function detect() { 
	
    var w = screen.width;
    var h = screen.height;
	//alert ("resolutie");
	//alert (h);
	// set link for 15"	800 X 600
	if (screen.height < 767) {

		document.location.href = 'http://www.pantiacolla.com/index.php?res=15';
	    //document.location.href = 'http://www.kameleonwebdesign.nl/pantiacolla/index.php?res=15';
	
	// set link for default 17"	1024 X 768
 	} else if (screen.height < 1023) {
 	
	 	// just load the page and asume it's 17" as default
		//document.location.href = 'http://www.pantiacolla.com?res=17';
	 	//document.location.href = 'http://www.kameleonwebdesign.nl/pantiacolla/index.php?res=17';
	
	// set link for 19" and > 	1280 x 1024
 	} else if (screen.height >= 1024) {
 	
	 	document.location.href = 'http://www.pantiacolla.com/index.php?res=19';
	 	//document.location.href = 'http://www.kameleonwebdesign.nl/pantiacolla/index.php?res=19';
	
	// set link for te rest to 17" > 	
 	} else {
 		
 		document.location.href = 'http://www.pantiacolla.com/index.php?res=17';
 		//document.location.href = 'http://www.kameleonwebdesign.nl/pantiacolla/index.php?res=17';
 		
 	}
	
}
