function photo(imageName,imageWidth,imageHeight,text) {
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+(imageHeight*1+50)+",scrollbars=no");
	newWindow.document.open();
	newWindow.document.write('<html><title></title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	newWindow.document.write('<img src="http://www.supermodels.lt/'+imageName+'" width='+imageWidth+' height='+imageHeight+' alt="" onClick="self.close()" onBlur="self.close()">');
	newWindow.document.write('<div>'+text+'</div></body></html>');
	newWindow.document.close();
	newWindow.focus();
}
