/*
*/
function winpopup(img_url,width,height,left,top,title) {
    w=window.open('','_blank','width='+width+',height='+height+',left='+left+',top='+top); 
    w.focus();
    w.document.write('<html><head><title>'+title+'</title></head><body><center><img src='+img_url+' alt='+title+'</center></body></html>');
    w.document.close(); 
}
