
// Tool tip script from http://internetbrothers.com/dhtml_tooltips.htm
function show(object) {
			if (document.layers && document.layers[object] != null)
			    document.layers[object].visibility = 'visible';
			else if (document.all)
			    document.all[object].style.visibility = 'visible';
		}
function hide(object) {
			if (document.layers && document.layers[object] != null)
			    document.layers[object].visibility = 'hidden';
			else if (document.all)
			    document.all[object].style.visibility = 'hidden';
		}
	

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
	}
	
	
function newWin(pageUrl, pageHeight, pageWidth) {
	        theWin=window.open(pageUrl, "pop", "toolbar=0,toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=" + pageWidth + ",height=" + pageHeight); 
	        // checks to see if the user is using netscape, the following code puts the new
	        // window in front of the old window
	        if(navigator.appName=='Netscape') {
	                theWin.focus();
	        } // if using netscape
	} // newWin function
	

function newWinWSCROLL(pageUrl, pageHeight, pageWidth) {
	        theWin=window.open(pageUrl, "", "toolbar=0,toolbar=no,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + pageWidth + ",height=" + pageHeight); 
	        // checks to see if the user is using netscape, the following code puts the new
	        // window in front of the old window
	        if(navigator.appName=='Netscape') {
	                theWin.focus();
	        } // if using netscape
	} // newWin function
	
	
	
flybycounter = 9999;

function flyby(title,str)
{
   flybycounter++;
   flyby_windowhandle = window.open("", "FlyBy", 'toolbar=no,location=no,scrollbars=no,status=no,resizable=yes,width=300,height=150')
   page = "<html>\n<head><title>" + title + "</title></head>\n";
   page += "<body bgcolor=E0DED2>\n";
   page += "<b><font face=\"arial\,verdana\" size=3>" + title + "</b></FONT><br>\n";
   page += "<font face=\"arial\,verdana\" size=2>\n";
   page += str + "\n</font></body></html>";
   flyby_windowhandle.document.write(page);
   flyby_windowhandle.document.close();
}

