//status bar message
defaultStatus = "Katzen & Frye"

//print page
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}

//popup window
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbar=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

//navigator resize fix
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);

//contact info drop down
if((navigator.userAgent.indexOf("Opera") != -1) || (document.layers) || (navigator.userAgent.indexOf("AOL") != -1)){
document.write("<style type='text/css'>p.questions a:link, p.questions a:visited {text-decoration: none} .help {cursor: default}</style>");
}
else {

document.write("<style type='text/css'>p a:link, p a:visited {text-decoration: none} p a:hover {text-decoration: underline} #menu1,#menu2,#menu3,#menu4,#menu5,#menu6,#menu7,#menu8,#menu9, #menu10 {display: none}</style>");
linkMsg="<p class='smalltext' style='text-align:left; color: #FFFFFF'>Click questions for answers.</p>";
}

function showMenu(currMenu) {
  if (document.getElementById) {
  thisMenu = document.getElementById(currMenu).style
  if (thisMenu.display == "block") {
  thisMenu.display = "none"
}
else {
thisMenu.display = "block"
}
return false
}
else {
return true
}
}