<!-- hide this script from non-javascript-enabled browsers
     function popupWindow(popupURL, width, height, scrollbars) {
        // Provide default values
        if(width == null) width = 468;
        if(height == null) height = 476;
        if(scrollbars == null) scrollbars = 'yes';
	   
        // Open window and bring to front
        win = window.open(popupURL, 'popupWin', 'toolbars=0,width='+width+',height='+height+',scrollbars='+scrollbars);   
        win.focus();
    } 
// stop hiding -->
		<!--
			function popUps(pageLocation,height,width,scrollbars,resizeable){
				window.open(pageLocation,'','scrollbars=' + scrollbars + ',resizeable=' + resizeable + ',width=' + width + ',height=' + height + ',screenX=20,screenY=20,top=20,left=20');
			}
		// -->