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=36  bgcolor="#FFFFCC"><br><img src="'+url+'">');
	popupwindow.document.write('<table border="0" elign="center" cellpadding="0" cellspacing="0"><a href="javascript:window.close();">Close</a><br><br>');
    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);
}

