function ChangeBackGround(the_color)
{

	document.body.style.background=the_color
	document.all("MyText").innerHTML = "The Current Background Color Name or Hex Code is : " + the_color;

}
