﻿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("","reisroutesWindow",sOption); 
					winprint.document.open(); 
					winprint.document.write('<html><HEAD><title>Reisroutes.be</title></head><link href="./../css/stylePrint.css" rel="stylesheet" type="text/css" /><body marginleft=5 marginheight=5 leftmargin=5 topmargin=5 onLoad=window.print()><table border=0 cellpadding=0 cellspacing=0 width=700 height=75><tr><td width=234 valign=top align=left><img src=./../images/logo_reisroutes.jpg></td><td width=326></td></tr></table>'); 
					winprint.document.write(sWinHTML);          
	                winprint.document.close(); 
					winprint.focus(); 
}

function highlight(field) {
  field.focus();
  field.select();
}


function PopUpURLNo(pagina,myWidth,myHeight,Srollbarz)
			{ 
		var LeftPosition = (screen.width) ? (screen.width)/2 : 0;
			var TopPosition = (screen.height) ? ((screen.height)/2) : 0;
						
			var sOption="toolbar=yes,location=no,directories=no,menubar=yes,"; 
				sOption+="scrollbars=yes,width=" + screen.width +",height=" + screen.height +",left=" + LeftPosition + ",top=" + TopPosition + "";
				
			window.open(pagina,"myPharmaWindow",sOption); 
			
}

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 + strHref,"myPharmaWindow",sOption); 
}
