function PrintThisPage(content) 
			{ 
			
			var LeftPosition = (screen.width) ? (screen.width-770)/2 : 0;
			var TopPosition = (screen.height) ? ((screen.height-600)/2)-50 : 0;
						
			var sOption="toolbar=no,location=no,directories=no,menubar=no,"; 
				sOption+="scrollbars=yes,width=780,height=600,left=" + LeftPosition + ",top=" + TopPosition + "";
				
				var sWinHTML = document.getElementById(content).innerHTML; 
   
				var winprint=window.open("","euroreizenwindow",sOption); 
					winprint.document.open(); 
					winprint.document.write('<html><HEAD><title>cons.hogent.be</title></head><link href="http://cons.hogent.be/style/stylenobg.css" rel="stylesheet" type="text/css" /><body onLoad=window.print()><div id="wrapper"><table border=0 cellpadding=0 cellspacing=0 height=75><tr><td width=234 valign=top align=left><img src=http://cons.hogent.be/images/logo.jpg></td><td width=326></td></tr></table><div id="subcontent"><div id="centercol">'); 					
					winprint.document.write(sWinHTML);          
					winprint.document.write('</div></div></div></body></html>'); 
	                winprint.document.close(); 
					winprint.focus(); 
}


function PopUpURL(pagina,myWidth,myHeight)
			{ 
			var LeftPosition = (screen.width) ? (screen.width-myWidth)/2 : 0;
			var TopPosition = (screen.height) ? ((screen.height-myHeight)/2)-50 : 0;
						
			var sOption="toolbar=no,location=no,directories=no,menubar=no,"; 
				sOption+="scrollbars=yes,width=" + myWidth +",height=" + myHeight +",left=" + LeftPosition + ",top=" + TopPosition + "";
				
			window.open(pagina,"myPharmaWindow",sOption); 
			
}


function GetURL(pagina,myWidth,myHeight)
{ 
			var strHref = window.location.href;
			var LeftPosition = (screen.width) ? (screen.width-myWidth)/2 : 0;
			var TopPosition = (screen.height) ? ((screen.height-myHeight)/2)-50 : 0;
						
			var sOption="toolbar=no,location=no,directories=no,menubar=no,"; 
				sOption+="scrollbars=yes,width=" + myWidth +",height=" + myHeight +",left=" + LeftPosition + ",top=" + TopPosition + "";
				
			window.open(pagina,"myPharmaWindow",sOption); 
} 