function popupFocus() {	self.focus();	window.setTimeout("popupFocus()",0000);}function getParams(width, height) {	var left = Math.floor((window.screen.width - width) / 2 + 0);	var top = Math.floor((window.screen.height - height) / 2 + -60);	return "left=" + left + ",top=" + top + ",width=" + width + ",height=" + height + ",resizable=0,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=no";}function Start(URL, newTarget, FpicWidth, FpicHeight) {	var picWidth = FpicWidth;	var picHeight = FpicHeight;		OpenWin = this.open(URL, newTarget, getParams(picWidth, picHeight), "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,directories=0,menuBar=0,width=" + FpicWidth + ",height=" + FpicHeight);}