// -- This is a modified version of the original script
// -- from CodeLifter.com, in order to fit in SPGM

// ################################################################
//   Izmaiņas veiktas PifPaf.lv bilžu galerijas vajadzībām
//
//   Vers. 1.01 [09.07.2007 9:21:01]
// ################################################################

var imageWin;

// Izvada bildi atsevišķā logā. Uzlikšķinot uz bildi logs aizveras.
// Izmaiņas veiktas veicos SunnyTour izstrādi, lai darbojas ar Mozillu.
function popupPicture(imgSrc,pwidth,pheight,picture_caption) {
	var winw = (screen.width - pwidth) / 2;
	var winh = (screen.height - pheight) / 2;

	if (imageWin && imageWin.closed==false) {
		imageWin.close();
	}
		imageWin = open('', "pilt", "toolbar=no,directories=no,status=no,location=no,resizable=no,scrollbars=no,menubar=no,height="+pheight+",width="+pwidth+",top="+winh+",left="+winw+"");
		imageWin.document.open();
		imageWin.document.write("<html><head><title>" +picture_caption);
		imageWin.document.write("</title></head><body bgcolor=black scrolling=no marginheight=0 marginwidth=0 leftmargin=0 topmargin=0 padding=0>");
		imageWin.document.write("<img src="+imgSrc+" width="+pwidth+" height="+pheight+" border=0 "+'style="cursor: hand;" alt="Close" onclick="window.close();">');
		imageWin.document.write("</body></html>");
		imageWin.document.close();

	return false;

}


function OLDpopupPicture(imgSrc,pwidth,pheight,picture_caption) {
	var winw = (screen.width - pwidth) / 2;
	var winh = (screen.height - pheight) / 2;

	if (imageWin && imageWin.closed==false) {
		imageWin.close();
	}
//		imageWin = open("gal/index.html", "pilt", "toolbar=no,directories=no,status=no,location=no,resizable=no,scrollbars=no,menubar=no,height="+pheight+",width="+pwidth+",top="+winh+",left="+winw+"");
		imageWin = open('', "pilt", "toolbar=no,directories=no,status=no,location=no,resizable=no,scrollbars=no,menubar=no,height="+pheight+",width="+pwidth+",top="+winh+",left="+winw+"");
		imageWin.document.open();
		imageWin.document.write("<html><head><title>" +picture_caption);
		imageWin.document.write("</title></head><body bgcolor=black scrolling=no marginheight=0 marginwidth=0 leftmargin=0 topmargin=0>");
		imageWin.document.write("<table width=100% height=100% cellpadding=0 border=0 cellspacing=0><tr><td valign=middle align=center><a href='javascript:window.close()'><img src="+imgSrc+" width="+pwidth+" height="+pheight+" border=0></a></td></tr></table>");
		imageWin.document.write("</body></html>");
		imageWin.document.close();

	return false;

}
