function ActionHighlight(cell, statusText) {
	cell.className="menuactive";
	window.status=statusText;
}

function ActionReset(cell, statusText) {
	cell.className="menuinactive";
	window.status=statusText;
}

function DoShowWindow(MyPage)
{

	window.open(MyPage, "disp_area");
	
}

function DoShowHeader(MyHeader)
{

	window.open(MyHeader, "head_area");
	
}

function DoFindService()
{

 var d = new Date();
 var m = d.getMonth();
 
 //0 -- January
 //11 -- December
 
 if (m == "0" || m == "3" || m == "6" || m == "9")
 {
 	window.open("./RHMCServ1.html", "disp_area");
 }
 else if (m == "1" || m == "4" || m == "7" || m == "10")
 {
  	window.open("./RHMCServ2.html", "disp_area");
 }
 else if (m == "2" || m == "5" || m == "8")
 {
  	window.open("./RHMCServ3.html", "disp_area");
 }
 else
 {
 	window.open("./RHMCServ4.html", "disp_area");
 }
}