function Show2Images(image1, image2, width, height, image_params, alt){
	document.write("<img src='"+image1+"' width='"+width+"' height='"+height+"' onclick=\"SecondImageShow('"+image2+"', '"+image_params+"', '"+alt+"')\" style='cursor:pointer;'  alt='"+alt+"'>");
}

function SecondImageShow(image2, image_params, alt){
	var wnd = window.open("","",image_params);
	wnd.document.write(
		"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head>"+
		"<"+"script type=\"text/javascript\">"+
		"function KeyPress()"+
		"{"+
		"	if(window.event.keyCode == 27) "+
		"		window.close();"+
		"}"+
		"</"+"script>"+
		"<title>"+(alt)+"</title></head>"+
		"<body topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" style='margin:0; padding:0;' onKeyPress=\"KeyPress()\">"+
		"<img src=\""+image2+"\" border=\"0\" alt=\""+alt+"\" />"+
		"</body></html>"
	);
	wnd.document.close();
}