//Printansicht?
if(window.location.search.slice(1)=="print"){
	document.write('<link rel="STYLESHEET" type="text/css" href="css/print.css">'); // druck-css
}else{
//Browseransicht
	if (navigator.appVersion.indexOf("Macintosh") != -1)    {
	        if (navigator.userAgent.indexOf("compatible") != -1)    {
	                if (navigator.userAgent.indexOf("MSIE 4") != -1)        {
					        document.write('<link rel="STYLESHEET" type="text/css" href="css/mac_ie.css">'); // ie4 auf mac
	                } else if (navigator.userAgent.indexOf("MSIE 5") != -1) {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/mac_ie.css">'); // ie5 auf mac
	                } else {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ns_seven.css">'); // alles andere auf mac
	                }
	        } else  {
	                if (navigator.userAgent.indexOf("Mozilla/4") != -1)     {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ns.css">'); // ns4 auf mac
	                }
	                else if(navigator.userAgent.indexOf("Netscape6") != -1) {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ns_seven.css">'); // ns6 auf mac
	                }else{
						document.write('<link rel="STYLESHEET" type="text/css" href="css/safari.css">'); // alles andere auf mac
					}
	        }
	} else  {
	        if (navigator.userAgent.indexOf("compatible") != -1)    {
	                if (navigator.userAgent.indexOf("Opera") != -1)        {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/opera.css">'); // opera auf pc
	                } else if (navigator.userAgent.indexOf("MSIE 4") != -1)        {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ie.css">'); // ie4 auf pc
	                } else if (navigator.userAgent.indexOf("MSIE 5") != -1) {
					        document.write('<link rel="STYLESHEET" type="text/css" href="css/ie.css">'); // ie5 auf pc
					} else if (navigator.userAgent.indexOf("MSIE 6") != -1) {
					        document.write('<link rel="STYLESHEET" type="text/css" href="css/ie.css">'); // ie6 auf pc
	                } else{
					        document.write('<link rel="STYLESHEET" type="text/css" href="css/ie.css">'); // alles andere auf pc
					}
	        } else  {
	                if (navigator.userAgent.indexOf("Mozilla/4") != -1)     {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ns.css">'); // ns4 auf pc
	                } else if(navigator.userAgent.indexOf("Netscape6") != -1)       {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ns_seven.css">'); // ns6 auf  pc
	                } else if(navigator.userAgent.indexOf("Netscape/7") != -1)       {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ns_seven.css">'); // ns7 auf  pc
	                } else if (navigator.userAgent.indexOf("Mozilla/5") != -1)     {
	                        document.write('<link rel="STYLESHEET" type="text/css" href="css/ns_seven.css">'); // mozilla 5
	                } else {
							document.write('<link rel="STYLESHEET" type="text/css" href="css/ns_seven.css">'); // alles andere auf pc
					} 
	        }
	}
}
//NN4 resize Bug
function doresize () {
location.reload();
return false;
}
if(document.layers)
window.captureEvents(Event.RESIZE);
window.onresize=doresize;
