function showImage(w,h,url)
{
    popupwindow=window.open('','Enlargement','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=auto,status=no,width='+w+',height='+h);
    popupwindow.document.clear();
    popupwindow.document.write('<html><head><title>Enlargement</title></head><body marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 >');
    popupwindow.document.write('<table border="0" align=center cellpadding="0" cellspacing="0"><br><tr><img src="'+url+'"><br><a href="javascript:window.close();"><img src="images/popup_close.gif" alt="Close" border="0" height="19" align="right" width="67"></a>');
    popupwindow.document.close();
}

function showHTML(w,h,url)
{
    popupwindow =window.open(url,'','location=no,toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=auto,status=no,width='+w+',height='+h);
}

