// JavaScript Document
function openImgWin(imgName, imgWidth, imgHeight) {
	var imgURL = '../images/trailers/' + imgName + '_lg.jpg';
	var imgHeight = imgHeight;
//	alert(imgURL);
//	alert(imgWidth);
//	alert(imgHeight);
	imgWin1 = window.open("","lgImg","width=" + imgWidth +", height=" + imgHeight + ", menubar=no, scrollbars=no, resizable=no");
	imgWin1.document.open();
	imgWin1.document.write('<head><title>' + imgName +'</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="font-size: 10pt; font-family: verdana; color: #000000; background-color: #FFFFFF; text-align: center">');
	imgWin1.document.writeln('<img src="');
	imgWin1.document.write(imgURL);
	imgWin1.document.write('">');
	imgWin1.moveTo((0 + screen.availWidth/2 - imgWidth/2),(0 + screen.availHeight/2 - (imgHeight)/2));
	imgWin1.document.writeln('<p><a href="#" onClick="window.close()">Close Window</a></p>');
//	imgWin1.document.write('<img src=" ' + imgURL + '">');
//	imgWin1.document.writeln('<br>' + imgURL + '<br>');
//	imgWin1.document.write('<script>alert(document.images[0].width)</script>');
}
