function ShowTopPhoto(img,language){

Close=new Array()
	Close["lt"]="Uždaryti";
	Close["en"]="Close";


Window2=open("","","scrollbars=1,width=600,height=480,fullscreen=0,resizable=1");
Window2.document.open();
Window2.document.write("<HEAD><TITLE>IPA</TITLE></HEAD>");
Window2.document.write("<body bgcolor='#FFFFFF' topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>");
Window2.document.write("<table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0'><tr><td align='center'>");
Window2.document.write("<a onClick='window.close()'><img src='"+img+"' border='0' alt='"+Close[language]+"'></a>");
Window2.document.write("</td></tr></table>");
Window2.document.write("</body>");
Window2.document.close();



}