function showLargeImage(imagePath, imageName)
{
	var productImage = window.open("", "productImage", "width=661,height=379,top=200,left=200");
	productImage.document.writeln("<html><head><title>Image Popup</title>");
// 	productImage.document.writeln("<script type='text/javascript' src='/portal/goodrich/js/imagePopup.js'></script>");
	productImage.document.writeln("<link rel='stylesheet' type='text/css' href='/portal/goodrich/css/main.css' />");
	productImage.document.writeln("<link rel='stylesheet' type='text/css' href='/portal/goodrich/css/imagePopup.css' />");
//        alert('Please close the popup window to return to the main page.');
	productImage.document.writeln("</head><body><div id='oHeaderContainerPopUp'><div id='oHeaderPopUp'>" + imageName + "</div></div><div id='oGraphicAreaPopUp'><img id='oGraphic' src='" + imagePath + "' width='640' /></div><div id='oFooterPopUp'><img id='oLogoPopUp' src='/portal/goodrich/images/popUpLogo.jpg' /></div></body></html>");
	productImage.focus();
	
}
