//***********************************************
// Open image in new window (resizeable)
//***********************************************
function imagePopup(url){
	if(typeof(url)!="object") {
		window._w = window.open("","","width=30,height=30,scrollbars=no,resizable=yes");
		window._w.document.open();
		window._w.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1257"><title>TAKAS</title></head><body topmargin="0" marginheight="0" leftmargin="0" marginwidth="0" rightmargin="0" bottommargin="0" bgcolor="#FFFFFF" text="#000000"><table border="0" cellpadding="0" cellspacing="0" background="" align="center"><tr><td><a href="#" onclick="self.close(); return false;"><img src="'+url+'" border="0" alt="Uždaryti langą?" onLoad="opener.imagePopup(this);"></a></td></tr></table></body></html>');
		window._w.document.close();
	}
	else {
		if (document.layers)
			window._w.resizeTo(url.width,url.height);		
		else
			window._w.resizeTo(url.width+10,url.height+30);
	}
}