// global variables and configuration settings
var width = 100;
var height = 100;
var imgWin = null;
// -------------------------------------------

/*function openImgWin(imgUrl) {
	var options = "width=" + width + ",height=" + height + ",resizable";
	
	var strTemp1 = '<html><head><title>CWIC</title><style type="text/css">body, p, table, td { font-family:Arial,Helvetica,sans-serif; font-size:10px; font-weight:bold; color:black }</style></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="opener.doResize()"><table cellspacing="2" cellpadding="2" border="0" width="100%"><tr><td>';
	var strTemp2 = '</td><td align="right"><a href="javascript:window.close()">Close window</a></td></tr><tr><td colspan="2" align="center"><img src="';
	var strTemp3 = '" border="0"></td></tr></table></body></html>';
	var strHTML = strTemp1 + 'EB Cutting' + strTemp2 + imgUrl + strTemp3;
	
	if (imgWin == null || imgWin.closed) {
		imgWin = window.open("about:blank", "imgWin", options);
	}
	
	imgWin.document.open();
	imgWin.document.write(strHTML);
	imgWin.document.close();
	imgWin.focus();
}
*/

function openImgWin(imgUrl) 
{
	var options = "width=" + width + ",height=" + height + ",resizable";
	imgWin = window.open("/open.asp?photo=" + imgUrl, "imgWin", options);
	imgWin.focus();
}


function doResize() {
	if (imgWin != null && !imgWin.closed) {
		var w = imgWin.document.images[0].width;
		var h = imgWin.document.images[0].height;
		imgWin.resizeTo(w+50, h+70);
	}
}