//-------------------------------------------------------------------------
// Function to view large version of image ... 
//	invoked when user clicks on standard size image.
//-------------------------------------------------------------------------
function viewLargeImage (imagePath, imageWidth, imageHeight) {	
	var windowHeight = imageHeight + 15;
	pageString = '<html><head><title>Image</title><link rel="stylesheet" href="/master.css"></head><body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0">';
	pageString += '<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center">';
	pageString += '<img src="' + imagePath + '" border="0" alt=""></td></tr>';
	pageString += '<tr bgcolor="##660203"><td align="center"><a href="javascript:self.close();" class="whiteLink">Close</a></td></tr></table></body></html>';
	//if (typeof 'newWindow' != 'undefined' && !newWindow.closed) newWindow.close();	
	newWindow = window.open('about:blank','ViewImage','top=0,left=0,width='+imageWidth+',height='+windowHeight+',resizable');
	newWindow.document.write(pageString);
	newWindow.document.close();
	newWindow.focus();
}//-->
