function changeLoc(address){
  window.location.href = address;
}

function changeBg(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="#FFFFFF";
//    td.style.cursor="hand";
  }
}

function restoreBg(td){
  if(document.getElementById||(document.all && !(document.getElementById))){
    td.style.backgroundColor="#E9ECCF";
  }
}

function showmenu()
{
	document.getElementById('sms-menu').style.visibility="visible";
}

function hidesubmenu()
{
	
	document.getElementById('sms-menu').style.visibility="hidden";
}
