currentImage = 0;                
totalImages = 53;

function winOpen(URL,plainWindow,wdth,hght)	{
	hght = (hght < 1) ? Math.round(window.screen.height*hght) : hght;//>
	wdth = (wdth < 1) ? Math.round(window.screen.width*wdth) : wdth;//>
	var x=Math.round((window.screen.width-wdth)/2); x = (x < 0) ? 0 : x;//>
	var y=Math.round((window.screen.height-hght)/2); y = (y < 0) ? 0 : y-20;//>
	eval("popup=window.open('"+URL+"','"+plainWindow+"','height="+hght+",width="+wdth+",toolbar=no,status=no,directories=no,location=no,scrollbars=no,menubar=no,resizable=no,top=" + y + ",left=" + x + "');");
	if (!popup.opener) popup.opener = self;
}

