<!--

var isAll = 0;
var isID = 0;

if (document.getElementById) {
  isID = 1;
  } else {
if (document.all) {
   isAll = 1;
};}

function findDOM(object) {
   if (isID) { return (document.getElementById(object).style); 
	 } else {
   if (isAll) {  return (document.all[object].style); 
	}
};}

function showDrop(object){
    var menuDOM = findDOM(object);
    menuDOM.visibility = 'visible';
}

function hideThem(object){
    var menuDOM = findDOM(object);
    menuDOM.visibility = 'hidden';
}

function goURL(the_url) {
   window.location = the_url;
}

function policyPop(the_policy) {
   window.open(the_policy,'policies','menubar,scrollbars,width=570,height=570');
}
//-->