// popup windowsvar newwin = null;function popup(url, wid, hi, scroll) {	new_spec = wid + "_" + hi + scroll;	scrolling = scroll? "yes": "no";	if (scroll && document.all && (navigator.userAgent.indexOf("Mac") > -1)) wid = wid+17;	newwin=window.open(url,new_spec,"WIDTH=" + wid + ",HEIGHT=" + hi + ",scrollBars=" + scrolling + ",resizable=no,screenX=100,screenY=100,left=100,top=100");	newwin.focus();}//redirection from popup to calling screenfunction gotourl_close(url){	window.opener.location.href = url;	window.close()}	
