<!-- hide this script from non-javascript-enabled browsers
     function popupWindow(popupURL, width, height, scrollbars) {
        // Provide default values
        if(width == null) width = 460;
        if(height == null) height = 488;
        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();
    } 
     function popupWindow2(popupURL, width, height, scrollbars) {
        // Provide default values
        if(width == null) width = 460;
        if(height == null) height = 488;
        if(scrollbars == null) scrollbars = 'yes';
	   
        // Open window and bring to front
        win = window.open(popupURL, 'popupWin2', 'toolbars=0,width='+width+',height='+height+',scrollbars='+scrollbars);   
        win.focus();
    } 
	
	     function popupWindow3(popupURL, width, height, scrollbars) {
        // Provide default values
        if(width == null) width = 600;
        if(height == null) height = 500;
        if(scrollbars == null) scrollbars = 'yes';
	   
        // Open window and bring to front
        win = window.open(popupURL, 'popupWin2', 'toolbars=0,width='+width+',height='+height+',scrollbars='+scrollbars);   
        win.focus();
    }
// stop hiding -->
