function popupwin(title,w,h,body)
{
    imgwin=window.open("","","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h);
    imgwin.document.open();
    imgwin.document.writeln("<html><head><title>"+title+"</title></head>");
    imgwin.document.writeln("<body leftmargin=\"0\" topmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\" marginwidth=\"0\" marginheight=\"0\">"+body+"</body></html>");
    imgwin.document.close()
}

function showimg(title,img,w,h)
{
    imgwin=window.open("","","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h);
    imgwin.document.open();
    imgwin.document.writeln("<html><head><title>"+title+"</title></head>");
    imgwin.document.writeln("<body leftmargin=\"0\" topmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\" marginwidth=\"0\" marginheight=\"0\">"+img+"</body></html>");
    imgwin.document.close()
}
