var newwindow = '';

function popup(url,bgc)
{
    if (newwindow.location && !newwindow.closed)
    {
    }
    else 
    {
        newwindow = window.open('', 'image', 'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
    }
    
    var html = popupWrite(url,bgc);
    newwindow.document.open();
    newwindow.document.write(html);
    newwindow.document.focus();
    newwindow.document.close();
 }
 
 function popupWrite(url,bgc)
 { 
    var html = "<HTML><HEAD><TITLE>Condolicious Photo Viewer</TITLE></HEAD><BODY style='background-color:" + (bgc ? bgc : '#fff') + "' " 
        + "LEFTMARGIN=10 MARGINWIDTH=10 TOPMARGIN=10 MARGINHEIGHT=10><CENTER>" 
        + "<IMG SRC='" + url + "' BORDER=0 NAME=image " 
        + "onload='window.resizeTo(document.image.width + 40,document.image.height + 56)'>"
        + "</CENTER></BODY></HTML>";

    return html;
 }
 
 function tidy()
 {
    if (newwindow.location && !newwindow.closed)
        newwindow.close();
 }
 
 // Based on JavaScript provided by Peter Curtis at www.pcurtis.com
