
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function enlarge(imageName,alt) {
	newWindow = window.open('','newWindow', 'width=550, height=700, scrollbars=yes, resizable=yes');
	newWindow.document.open();
	newWindow.document.write('<html>\n<head>\n<meta http-equiv="imagetoolbar" content="no">\n<title>' +alt+ '</title>\n</head>\n\n<body bgcolor="#FFFFFF" onBlur="self.close()">\n'); 
	newWindow.document.write('<div align="center"><a href="javascript:;self.close()"><img src="_images/' +imageName +'" border="0" alt="' +alt +'"></a></div>\n\n');
	newWindow.document.write('<a href="javascript:;self.close()"><p align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">CLOSE WINDOW</font></p></a>\n');
	newWindow.document.write('</body>\n</html>');
	newWindow.document.close();
	newWindow.focus();
}