function openpop(iname,img_width,img_height,where)
{
 var screen_width=screen.width;
 var screen_height=screen.height;
 var x=Math.round((screen_width/2)-(img_width/2));
 var y=Math.round((screen_height/2)-(img_height/2));
 var scr="";
 if (img_width>screen.width || img_height>screen.height) scr="yes"; else scr="no";
 y=y+50;
 if (where==1) {
 window.open("popupimg.php?where=1&id="+iname+"&w="+img_width+"&h="+img_height+"","_blank","left="+x+",top="+y+",width="+img_width+",height="+(img_height+35)+",scrollbars="+scr);
 } else {
 
 window.open("popupimg.php?id="+iname+"&w="+img_width+"&h="+img_height+"","_blank","left="+x+",top="+y+",width="+img_width+",height="+(img_height+35)+",scrollbars="+scr);
 
}
}