function SetCellFocus(page){
	var Cell;
	Cell = document.getElementById("cell_" + page);
	//alert(Cell);
	if (Cell){
		Cell.style.borderStyle = "inset";
		Cell.style.background="#586D30";

	}

}
function Goto(URL){
     location.href = URL ;
}
function Download(){
	Goto('Download_/MyMsg_1.0.3.zip');
}
