function ImagePopUp(imgPath, imgWidth, imgHeight)
{
	var winLeft, wintop, feat, imgWin;
	winLeft = (screen.width/2) - (imgWidth/2);
	winTop = (screen.height/2) - (imgHeight/2);
	feat = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=" + imgWidth + ",height=" + imgHeight + ",left=" + winLeft + ",top=" + winTop + "'";
	imgWin = window.open('about:blank','',feat);
	with(imgWin.document)
	{
		var tmp;
		tmp = "<html><head><title>Rafting Pinta</title><style>body{margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:0px;}</style></head><body bgcolor=000000 scroll=no onLoad=self.focus() onBlur=self.close()>";
		tmp = tmp + "<img src='" + imgPath + "' border='0'></body></html>";
		writeln(tmp);
		close();
	}
}