<!--
function closeWindow() {
var appName;
appName = window.navigator.appName;
if(appName == "Netscape")
{
alert("The close window functionality is not available for Mozilla and Netscape browsers due to JavaScipt security issues. To close this window, please click the \"X\" at the upper right hand of the window.");
}
else
{
window.close();
}
}
// -->
