// 
var win = undefined;
/***/
function viewLargeImage(imageFilePath, imageAlt, imageHeight, imageWidth) {
	// 
	if (win != undefined) {
		win.close();
	}
	// 
	win = window.open(imageFilePath, "viewLargeImageWindow", 
		"directories=no,location=no,menubar=no,personalbar=no,status=no,toolbar=false,resizable=1,width=745,height=750");

	// 
	win.document.write(
		'<html>' + 
		'<head>' + 
		'<title>' + imageAlt + '</title>' + 
		'<link rel="stylesheet" type="text/css" href="/common/css/outline.css">' + 
		'<link rel="stylesheet" type="text/css" href="/common/css/SSI.css">' + 
		'</head>' + 
		'<body bgcolor="#ffffff">' + 
		'<div align="center"><img src="/catalog/img/jmag_bicimg_head.gif" width="720" height="79" border="0" alt="JMAG Application Catalog"></div><br>' + 
		'<table width="100%" border="0">' + 
		'<tr><td><div align="center">' + 
		'<IMG src="' + imageFilePath + 
		'" alt="' + imageAlt + 
		'" width="' + imageHeight + 
		'" height="' + imageWidth + '">' + 
		'</div></td></tr><tr><td><div align="center">' + 
		'<form><p><input type="button" value="close"  onclick="window.close( )"></p></form>' + 
		'</div></td></tr></table>' + 
		'</div></div>');

	
		// 
	var footer = "";
	// 
	var footerkeyword = "<!--footer2-->";
	footer = document.body.innerHTML;
	footer = footer.substring(footer.indexOf(footerkeyword) + footerkeyword.length);
	// 

	win.document.write(footer + '</html>');
	// 
	win.document.close();
}
