function my_function(param1)
 {
  alert("[" + param1 + "]")
 }


function menuMouseOver(passObj)  //This function will change the background of the menu selection
 {
   passObj.style.backgroundColor = "657F9A"
 }

function menuMouseOut(passObj)  //This function will change the background of the menu selection
 {
   passObj.style.backgroundColor = "CCCC99"
 }
 
function copyright()
{
	document.write('Copyright © 2010 WRISA')
}

function contact()
{
	document.write('Contact WRISA: (262) 895-3679  -or-  <A class="bottom_email" href="mailto:wrisa@wrisa.net">wrisa@wrisa.net</A>')
}