function PrintWindow(url){
 window.open(url,'print','location=0,menubar=0,resizable=yes,status=0,menubar=no,width=600,height=500,scrollbars=yes');
}

function PopupImage(img, name) {
    title=name;
    w=open("",'image','width=1,height=1,toolbar=no,scrollbars=yes,resizable=yes');
    w.document.write("<HTML><HEAD><TITLE>"+title+"</TITLE></HEAD>\n");

//    w.document.write("<link href='css/style.css' rel='stylesheet' type='text/css'>\n");
    w.document.write("<SCRIPT language=javascript>var clientHeight=" + window.document.body.clientHeight + "</" + "SCRIPT>\n");

    w.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) { window.resizeTo(document.images[0].width+50,(document.images[0].height > clientHeight ? clientHeight : document.images[0].height+70)); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>\n");
    w.document.write("<BODY onload=\"checksize()\" BGCOLOR='#FFFFFF' leftMargin='10' topMargin='10' marginwidth='10' marginheight='10'>\n");

    w.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%" align="center" bgcolor="#CECECE"><tr><td bgcolor="#FFFFFF" valign="middle" align="center">');
    w.document.write('<a href="javascript: window.close()" title="Click to close">');
    w.document.write("<img id='main' src='" + img + "' border=\"0\">\n");
    w.document.write('</a>');
    w.document.write('</td></tr></table>');


    w.document.write("</BODY></HTML>");
    w.document.close();
}