this.const1="type1";
function movetotarget(objx){
if(this.const1!=null){
var obj=document.getElementById(this.const1);
obj.style.display="none";
}
var objorder=document.getElementById(objx);
objorder.style.display="block";
this.const1=objx;
}
