function show_big(imageName,imageWidth,imageHeight,alt) {
	var windowWidth = parseInt(imageWidth);// + 4;
	var windowHeight = parseInt(imageHeight);// + 26;
	var sindex = "win" + Math.round(10000*Math.random());//imageName.lastindexOf('/');
	//alert(sindex);
	var newWindow = window.open("", sindex ,"width="+windowWidth+",height="+windowHeight+",left= 150, top= 100");

	
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
	newWindow.document.write('<img src="'+imageName+'" width="'+imageWidth+'" height="' + imageHeight + '" alt="' + alt + '" onclick="self.close(); true;">'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
