function Mmove(round){
var v1= document.getElementById("view1");
var v2= document.getElementById("view2");
var v3= document.getElementById("view3");
var t1= document.getElementById("t1");
var t2= document.getElementById("t2");
var t3= document.getElementById("t3");
var j1= document.getElementById("j1");

if(round=="t1")
	{
v1.style.display="block";
v2.style.display="none";
v3.style.display="none";
j1.style.marginLeft="0px";
t1.style.backgroundColor="#960404";
t2.style.backgroundColor="#eeeeee";
t3.style.backgroundColor="#eeeeee";
t1.style.color="#ffffff";
t2.style.color="#960404";
t3.style.color="#960404";
}else if(round=="t2")
	{
v1.style.display="none";
v2.style.display="block";
v3.style.display="none";
j1.style.marginLeft="105px";
t1.style.backgroundColor="#eeeeee";
t2.style.backgroundColor="#960404";
t3.style.backgroundColor="#eeeeee";
t1.style.color="#960404";
t2.style.color="#ffffff";
t3.style.color="#960404";
}else if(round=="t3"){
v1.style.display="none";
v2.style.display="none";
v3.style.display="block";
j1.style.marginLeft="205px";
t1.style.backgroundColor="#eeeeee";
t2.style.backgroundColor="#eeeeee";
t3.style.backgroundColor="#960404";
t1.style.color="#960404";
t2.style.color="#960404";
t3.style.color="#ffffff";
}
}

