var iMyWidth;
var iMyHeight;
var iMyLocX;
var iMylocY;

iMyWidth = window.screen.width*.6
iMyHeight = window.screen.height*.65
iMyLocX = (window.screen.width/2) - (iMyWidth/2)
iMyLocY = (window.screen.height/2) - (iMyHeight/2)

function launchevent(url){
	self.name = "opener"; 
	remote = open(url, "", "width=" + iMyWidth + ",height=" + iMyHeight + ",left=" +iMyLocX + ",top=" + iMyLocY + ",resizable,status,scrollbars");
} 
