<!-- ------------ CHANGE CLASS SCRIPT ------------ -->
function changeclass(classID,className) {
  var NAME = document.getElementById(classID);
  NAME.className=className;
} 

function showmenu(elmnt){
document.getElementById(elmnt).style.visibility="visible"
}
function hidemenu(elmnt){
document.getElementById(elmnt).style.visibility="hidden"
}
function moveover(image, w, h){
document.getElementById(image).width=w
document.getElementById(image).height=h
}
function moveback(image, w, h){
document.getElementById(image).width=w
document.getElementById(image).height=h
}

function changeTextToPass (textId,passId){
	var theTextBox = document.getElementById(textId);
	var thePassBox = document.getElementById(passId);

    theTextBox.style.display = 'none';
    thePassBox.style.display = 'inline';
    thePassBox.focus(); 
}

function restorePassToText (passId, textId){
	var thePassBox = document.getElementById(passId);
	var theTextBox = document.getElementById(textId);
	
	if (thePassBox.value == ""){
	  theTextBox.style.display = 'inline';
	  thePassBox.style.display = 'none';		
	}
}

function popup(mylink, windowname){
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=800,height=600,scrollbars=yes,resizable=1,toolbar=1');
return false;
}
function popup1(mylink, windowname){
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=800,height=600,scrollbars=yes,resizable=1,toolbar=1');
return false;
}

function gettip(image,text){
document.getElementById('tip').innerHTML="<img src='" + image + "' border='0' align='right' vspace='5' hspace='10' />" + text + ""
}
function reset(){
document.getElementById('tip').innerHTML="<img src='images/pacer_logo1.GIF' border='0' align='right' vspace='5' hspace='10' />"
}

//<![CDATA[

function load() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    map.setCenter(new GLatLng(37.4419, -122.1419), 13);
  }
}

    //]]>