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"
 }