function clicker(url)
  {
	if(navigator.userAgent.indexOf("MSIE") == -1)
		{
			newwindow = window.open(url,'Report','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=yes,width=796,height=596,top=1,left=1');
			newwindow.focus();
		}
	else
		if (screen.width >= 1024 && screen.height >= 768)
			window.open(url,'Report','toolbar=no,width=1000,height=775,directories=no,status=yes,scrollbars=yes,resizable=yes,menubar=no,top=1,left=1');
		else
			window.open(url,'Report','toolbar=no,width=750,height=550,directories=no,status=yes,scrollbars=yes,resizable=yes,menubar=no,top=1,left=1');
  }
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function HandlerDocumentResize() {
	fLayout_resizeAll();
}
function trim(str)
{
    return str.replace(/^\s+|\s+$/g,'');
}
function fSubmit()
{      
   var check = escape('<type your question>');
	if (trim(document.qgoform.sQuestion.value) == '' || escape(document.qgoform.sQuestion.value)== check)
  {
     alert('You did not type in a question.\nPlease enter a question.');
     document.qgoform.sQuestion.value = '';
     document.qgoform.sQuestion.focus();
     return false;
  }
  else
  {
      return true;
  }
}
function ofs(page)
{
  var yes = 1;
  var no = 0;
  file = page
  var menubar = no;      
  var scrollbars = no;  
  var locationbar = no;  
  var directories = no; 
  var resizable = yes;   
  var statusbar = no;  
  var toolbar = no;
  windowprops = "width=" + (screen.width-10) + ",height=" + (screen.height-50) + ",top=0,left=0";
  windowprops += (menubar ? ",menubars" : "") +
  (scrollbars ? ",scrollbars" : "") +
  (locationbar ? ",location" : "") +
  (directories ? ",directories" : "") +
  (resizable ? ",resizable" : "") +
  (statusbar ? ",status" : "") +
  (toolbar ? ",toolbar" : "");
  window.open(file, "Document", windowprops);
}