var stylePath = DirectoryLevel+"include/css/";
var BrowserType;

if (document.layers)
	{
	if (navigator.platform.indexOf("Win") != -1)
		{
		document.write('<link rel=stylesheet type="text/css" href="' + stylePath + 'styles_ns.css">');
		BrowserType = "Netscape";
		}
	else
		{
		document.write('<link rel=stylesheet type="text/css" href="' + stylePath + 'styles_ie.css">');
		BrowserType = "Macintosh"
		}
	}
else
	{
	document.write('<link rel=stylesheet type="text/css" href="' + stylePath + 'styles_ie.css">')
	BrowserType = "Internet Explorer";
	}

function PopUp(URL) {
var l = 121;
var t = 119;
var w = 640;
var h = 480;
var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=yes" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,"MenuPopup",windowprops);
}


function PopUp2(URL) {
var l = 121;
var t = 119;
var w = 794;
var h = 580;
var windowprops = "location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes,status=yes" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,"MenuPopup",windowprops);
}

NS4 = (document.layers);
IE4 = (document.all);
ver4 = (NS4 || IE4);
IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
isMac = (navigator.appVersion.indexOf("Mac") != -1);
