// JavaScript Document

<!-- hide

function show(name)
{     
	var adres;
	adres = "/uploads/cards/"+name+".jpg";
	myWin = open("","","top=10,left=10,width=600,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no");
	myWin.document.open();
	myWin.document.write('<html><head><title>baltia.com.ua');
	myWin.document.write('</title></head><body bgcolor="#B5C8DB">');
	myWin.document.write('<center><font class="main">');
	myWin.document.write('<img src="');
	myWin.document.write(adres);
	myWin.document.write('" border="1" onclick="window.close()">');
	myWin.document.write('</center>');
	myWin.document.write('</body></html>');
	myWin.document.close();  
}



//-->
