//***************************
//MENU LINKS
//***************************
var moveSize=window.open

function openContact()
{
moveSize("http://www.oakland-lana.org/sub_level/contacts/sm_pop.htm", "_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=500, height=275");
}
function openCity()
{
moveSize("http://www.oakland-lana.org/sub_level/contacts/city_contact.htm", "_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=700, height=600");
}
function openNeighbor()
{
moveSize("http://www.oakland-lana.org/sub_level/contacts/neigh_contact.htm", "_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=700, height=600");
}

//***************************
//MESSAGE
//***************************

function showMessage() 
{ 
if (document.getElementById) 
{ 
document.getElementById("message_hover").style.display = "block"; 
} 
}

function hideMessage() 
{ 
if (document.getElementById) 
{ 
document.getElementById("message_hover").style.display = "none"; 
} 
}