var xx = null;

function ViewImagePopup(image,width,height){
    try{
        xx.close();
    }
    catch(e){
    }
    xx = window.open("","Image","width=" + width + ", height=" + height + ", scrollbars=0, resizable=0,location=no");
    xx.document.write("<html><head><title>Image</title></head><body bgcolor=#FFFFFF  topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'><IMG onclick='window.close();' src='thumpnail/thumpnail.php?image=../" + image + "&width=" + width + "' vspace=0 hspace=0 border='0' ></body></html>");
    xx.moveTo(50,50);
    xx.focus();
}