function ShowTopPhoto(img,language){

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

newImg = new Image();
newImg.src = img;
height = newImg.height;
width = newImg.width;

Window2=open("","","scrollbars=1,width=830,height=600,fullscreen=0,resizable=1");
Window2.document.open();
Window2.document.write("<HEAD><TITLE>IPA</TITLE>");
Window2.document.write("<scri"+"pt src='http://www.ipa.lt/js/other.js'>"+"</scr"+"ipt>");
Window2.document.write("</HEAD>");
Window2.document.write("<body bgcolor='#EFEFEF' 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=''></a>");
Window2.document.write("</td></tr></table>");
Window2.document.write("<scri"+"pt >window.onload=getImageSize('"+img+"')</scr"+"ipt>");
Window2.document.write("</body>");
Window2.document.close();

}
function getImageSize(img){
	newImg = new Image();
	newImg.src = img;
	height = newImg.height;
	width = newImg.width;
	if (height!=0 && widht!=0)
	{
		height = height + 80;
		widht = widht + 50
		window.resizeTo(width,height);
	}
	
}