// JavaScript Document
function popAlert(theUrl,alertWidth,alertHeight){
	this.screenWidth=screen.width;
	this.screenHeight=screen.height;
	fromTop=(screenHeight/2)-(alertHeight/2);
	fromLeft=(screenWidth/2)-(alertWidth/2);
	windowParams="width="+alertWidth+", height="+alertHeight+", top="+fromTop+", left="+fromLeft+", menubar=no, status=no, toolbar=no, location=no, scrollbars=no, status=no, title=no resizable=no";
	window.open(theUrl, "Alert", windowParams);
}