// JavaScript Document

function popUp(URL,popup_width,popup_height) {
	
	var day = new Date();
	var id = day.getTime();
	//var popup_width=480;
	//var popup_height=600;
	var vertical_adjustment=80;
	
	// Center the window in the screen
	var left = (screen.width/2) - popup_width/2;
	var top = (screen.height/2) - popup_height/2 - vertical_adjustment;
		
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+popup_width+',height='+popup_height+',left='+left+',top='+top+'');");
}
