function PreloadImages()

{
  /*MM_preloadImages('/Images/design/tick-over.gif',
				   'bullet_back-over.gif',
				   'bullet_content-over.gif');*/

}

function imageWindow(imageURL, x, y)
{
	var a=document.getElementById('imgLarge');   
	var popImageWin = window.open('' , 'imgwin' , 'width='+x+', height='+y+', top=200, left=200, status=no, toolbar=no, menubar=no , location=no');
	with(popImageWin.document)
	{
		write('<html><head><title>');
		write("Paveiksliukas");
		write('</title>');
		write('<style>body{margin: 0px;}</style></head>');
		write('<body onLoad="self.focus();" onClick="window.close();"><img src='+imageURL+' id="pic" style="cursor: pointer;" />');
		write('</body></html>');
		close();
	}
}