﻿// JScript File

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); 
} 
