// JavaScript Document
function popup(theURL, w, h, wScroll) {
	var l=(screen.width-w)/2;
	var t=(screen.height-h)/2;
	var s='no';
	if (wScroll==true) s='yes';
	popUpWin = window.open(theURL, 'popUpWin', 'toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,copyhistory=1,scrollbars='+s+',statusbar=1,width='+w+',height='+h+',left='+l+',top='+t+',screenX='+l+',screenY='+t);
	//scrollbar=true
}