
if (navigator.platform == "Win32"){//Kollar om plattform is PC
	if (navigator.appName == "Microsoft Internet Explorer"){//Kollar om browser is Explorer 
		document.write ("<link rel=stylesheet href=css/ie_pc.css type=text/css>");//ExplorerStylesheetPC
	}
	else{
		document.write ("<link rel=stylesheet href=css/ns_pc.css type=text/css>");//NetscapeStylesheetPC
	}
}
else{//Mac
	if (navigator.appName == "Microsoft Internet Explorer"){//Kollar om browser is Explorer
		document.write ("<link rel=stylesheet href=css/ie_mac.css type=text/css>");//ExplorerStylesheetMac
	}
	else{
		document.write ("<link rel=stylesheet href=css/ns_mac.css type=text/css>");//NetscapeStylesheetMac
	}
}
function newWin(url, winName, settings){
		window.open(url, winName, settings);
	}








