/** Notification to users of Netscape 4.x to upgrade **/

if (document.layers && (document.referrer.indexOf(document.location.host)==-1)) {
  document.write("<p align=\"center\">Dear visitor, this website is not optimized for Netscape 4.x. It is recommended that you upgrade <br>to the latest version of either <a target=\"_blank\" href=\"http://www.microsoft.com/downloads\">Internet Explorer</a>, <a target=\"_blank\" href=\"http://www.mozilla.org\">Mozilla Firefox</a> or <a target=\"_blank\" href=\"http://www.apple.com/safari\">Apple Safari</a>.</p>");
}

/*****************************************************************
* Flash Fix script
* Fixes embedded object activation issues in Internet Explorer
*****************************************************************/

flashfix = function() {
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}
} 

if (window.attachEvent)
window.attachEvent("onload", flashfix)
else
window.onload=flashfix;