function sendForm(myText){
document.googleForm.q.value=myText;
document.googleForm.submit();
}


function menuLink(linkLoc)
{
	if(! linkLoc==""){
		window.open(linkLoc,"_blank","toolbar=yes,location=yes,menubar=yes,titlebar=yes,resizable=yes,scrollbars=yes");
	}
	//window.open(linkLoc,"_blank","toolbar=yes,location=yes,menubar=yes,titlebar=yes,resizable=yes,scrollbars=yes");
}


function fNWin(fUrl, fX, fY, fScBar){
        newWin = window.open (fUrl,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+fX+",height="+fY); 
        newWin.focus()
}
 
 
 function fImgWin(fUrl, fX, fY){
	view = window.open("","ImageViewWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+fX+",height="+fY)
	view.document.open()
	view.document.write("<html><head><title>gD}</title></head><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>")
	view.document.write("<a href='javaScript:window.close();'><img src='"+fUrl+"'  width="+fX+" height="+fY+" border=0></a></body></html>")
	view.document.close()
}
