var winHandle = null;function popup(iUrl, iName, w, h, scroll, titlebar){	if( !w ) {		w = 650;	}	if( !h ) {		h = 500;	}        if( !scroll ) {                scroll = "yes";        }	if( scroll == "" ) {		scroll = "yes";	}	var winl = (screen.width - w) / 2;	var wint = (screen.height - h) / 2;		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'	if (!this.winHandle) {		this.winHandle=window.open(iUrl, iName, winprops);	} 	else { 		if (this.winHandle && !this.winHandle.closed) { 			this.winHandle.close(); 		} 		this.winHandle=window.open(iUrl, iName, winprops); 		this.winHandle.focus(); 	} 	this.winHandle.focus();}