var navName = navigator.appName

if(navName == "Netscape")
{
//the following need to be absolute links!!
document.write("<LINK REL=STYLESHEET HREF=\"netscape.css\" TYPE=\"text/css\">")
} else {
document.write("<LINK REL=STYLESHEET HREF=\"netscape.css\" TYPE=\"text/css\">")
}



// code for floating windows (this is a convienent place)

function psShowWin(theName, theFlags, theURL, thisURL)
{
	if (theURL)
	{ 	psWindow = open(theURL,theName, psWinInfo[theName] );
		psWindow = open(theURL,theName, psWinInfo[theName] );	
	}
	else 
	{	if (psWindow)
			psWindow.close(); }
	if (thisURL) 
		location=thisURL;	
	if (theFlags & 1)
	{	if (psWindow.focus)
			psWindow.focus();
	}
}
function psSetupWin(theName, winInfo)
{
	psWinInfo[theName] = winInfo;
}

var	psWindow = null;
psWinInfo = new Array();
psSetupWin ("zoomIn", "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=350,height=350");