// JavaScript Document

function apriPopUp(URL,width,height,scrollbar)
{
	var left = (screen.width) ? (screen.width-width)/2 : 0;
	var top = (screen.height) ? (screen.height-height)/2 : 0;
	if(scrollbar == "") scrollbar = "no";
	var settings = 'height=' + height+ ',width=' + width + ',top=' + top + ',left=' + left + ',scrollbars=' + scrollbar + ',resizable=no';
	
	var now = new Date()
	window.open(URL,"popup" + now.getTime(),settings);		
}
