// plaats hier de functies die voor elke pagina geladen moeten worden, die
// site specifiek zijn, zoals deze dynamische stylesheet detector
if (WIN)	{
 	// hier het pc stylesheet	
		document.writeln('<LINK REL="stylesheet" HREF="styles/pc.css" TYPE="text/css">');		
} else {
	if (IE5m){
		// hier het intenetexplorer 5 stylscheet voor de mac
			document.writeln('<LINK REL="stylesheet" HREF="styles/ie5m.css"  TYPE="text/css">'); 
	}else{
		//de rest voor mac en linux netschaap enzo
		document.writeln('<LINK REL="stylesheet" HREF="styles/nn5m.css"  TYPE="text/css">'); 
	}
}


<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

<!--
function NewWindow(url) {
	if(parseInt(navigator.appVersion)>3) {
	  	if(navigator.appName == "Netscape"){
			var breedte = 303;
			var hoogte = 300;
			
			/*var breedte = screen.availweight;
			var hoogte = screen.availHeight;*/
			win = window.open (url,'newwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,outerWidth='+breedte+',outerHeight='+hoogte);
			win.moveTo(center,center);
		} else
		
		var breedte = 303;
		var hoogte = 300;
		win = window.open (url,'newwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,outerWidth='+breedte+',outerHeight='+hoogte);
   } else {
   		var breedte = 303;
		var hoogte = 300;
		win = window.open (url,'newwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,outerWidth='+breedte+',outerHeight='+hoogte);
   }
}
// -->

