// JavaScript Document
window.onload=resize;

window.onresize=resize;
window.onrefresh=resize;

function resize(){
	var availHeight;
	if (self.innerWidth) availHeight = self.innerHeight; // all except Explorer
	else if (document.documentElement && document.documentElement.clientHeight) availHeight = (document.documentElement.clientHeight); // Explorer 6 Strict Mode
 	else if (document.body)  availHeight = document.body.clientHeight; // other Explorers

	document.getElementById("content").style.height=parseInt(availHeight-473)+"px";
	//document.getElementById("div_content").style.height=parseInt(availHeight - 505)+"px";
	
	//alert(availHeight);
	
	
}


function loadPage(){
	resize();
	//applyDropShadows("img.photo1","shadow3");
	
}

 function PrintThisPage(root){ 
   var sOption='toolbar=yes,location=no,directories=yes,menubar=yes,'; 
       sOption+='scrollbars=yes,width=750,height=600,left=100,top=25'; 

   var sWinHTML = document.getElementById('print').innerHTML; 
   sWinHTML = sWinHTML.replace(/home_divider.jpg/,"punt_groen.png");
   
   var winprint = window.open('','PrintThisPage',sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><head>');
	   winprint.document.write('<link href=\"http://'+ root +'/_imports/css/print.css\" rel=\"stylesheet\" type=\"text/css\">');
	   winprint.document.write('</head><body>'); 
       winprint.document.write(sWinHTML);          
       winprint.document.write('</body></html>'); 
	   winprint.document.close(); 
       winprint.focus();
	   winprint.print();
   
}