
function fenster(width, height) {
    window.open("","windowRef","width=" + width + ",height=" + height+",top=0,left=0,screenX=0,screenY=0");
}


imagename = '';
function enlrge(imgnme,width,height) {
    lrgewin = window.open("about:blank","","width=" + width + ",height=" + height+",toolbar=no,status=yes,location=no,scrollbars=no,resizable=no")
    imagename = imgnme;
    setTimeout('update()',500)
}
function update() {
    doc = lrgewin.document;
    doc.open('text/html');
    doc.write('<HTML><HEAD><TITLE>Palmawatch Image<\/TITLE><\/HEAD><BODY bgcolor="black" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
    doc.write('<a href="#" onClick="window.close()"><IMG SRC="' + imagename + '" border="0"></a>');
    doc.close();
}


