
// 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
	
	
