// Browser Detection
var isMac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
var NS4 = (document.layers) ? true : false;
var IEmac = ((document.all)&&(isMac)) ? true : false;
var IE4 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
var IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
var IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
var NS6 = (!document.layers) && (navigator.userAgent.indexOf('Netscape')!=-1)?true:false;
var OPE = (navigator.userAgent.indexOf('Opera') != -1) ? true : false;

if (NS4)	
	document.write("<LINK rel='stylesheet' type='text/css' href='" + strNsCss + "'>");
else {
 	if (isMac)		
		document.write("<LINK rel='stylesheet' type='text/css' href='" + strMacCss + "'>");
	else {
		if (OPE)			
			document.write("<LINK rel='stylesheet' type='text/css' href='" + strOpCss + "'>");
		else 
		{
			document.write("<LINK rel='stylesheet' type='text/css' href='" + strWinCss + "'>");
		}
	}}
	
// Popup window
function openWin(URL){
	aWindow=window.open(URL,"thewindow","toolbar=no,width=650,height=500, status=no,scrollbars=yes,resize=yes,menubar=no");	
}
