function prn(ph, x, y){
var _photo = ph;
var _x = x;
var _y = y;

newwin = window.open('','','top=30,left=70,width='+ _x + ',height=500');
with (newwin.document)
{ 
open();
write('<HTML><HEAD>');
write('<title>EAST_models :</title>');
write('</HEAD><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>');
write('<table border=0 width=100% height=100% cellpadding=0 cellspacing=0>');
write('<tr><td align=center>');
write('<img src=more/'+ _photo + '>');
write('</td></tr></table>');
write('</body></html>');
close();
   }
}
