var newwindow = ''
function popurl(url) {

if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url; 
    newwindow.focus(); } 
else { 

    
    //open new window
    newwindow=window.open(url,'htmlname','toolbar=no,width=570,height=500, resizable=1');
    //newwindow=window.open(url,'htmlname','toolbar=no,width=450,height=500,resizable=1');
    
    //line below needed for the title only, you can delete it if you want
    //newwindow.document.write('<html><title>'+title+'<\/title><head><\/head><body topmargin="0" leftmargin="0"><\/body><\/html>')
    
    } 
}

function tidy() {
if (newwindow.location && !newwindow.closed) { 
   newwindow.close(); } 
}

function popurlWide(url) {

if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url; 
    newwindow.focus(); } 
else { 

    
    //open new window
    newwindow=window.open(url,'htmlname','toolbar=no,width=800,height=500,scrollbars=1, resizable=1');
    //newwindow=window.open(url,'htmlname','toolbar=no,width=450,height=500,resizable=1');
    
    //line below needed for the title only, you can delete it if you want
    //newwindow.document.write('<html><title>'+title+'<\/title><head><\/head><body topmargin="0" leftmargin="0"><\/body><\/html>')
    
    } 
}



