
// FUNCTION: imageWindow - opens an image in a new window without toolbars or scrollbars
function imageWindow(imageName,imageWidth,imageHeight,alt) {
	newWindow=window.open('','newWindow','width='+imageWidth+',height='+imageHeight);
	newWindow.document.open();
	newWindow.document.write('<html lang="en"><head><title>'+alt+'<\/title><\/head><link href="/stylesheet/phespirit.css" type="text/css" rel="StyleSheet" />');
	newWindow.document.write('<body marginheight="0" marginwidth="0" onblur="self.close()">'); 
	newWindow.document.write('<img src="'+imageName+'" alt="'+alt+'" title="'+alt+'" border="0" width="'+imageWidth+'" height="'+imageHeight+'" />'); 
	newWindow.document.write('<\/body><\/html>');
	newWindow.document.close();
	newWindow.focus();
}
