function Movetable(cid,tname,cname,cclass,num){
	for(var s=1;s<=num;s++){
		if(cid==s){
			document.getElementById(tname+""+s).style.display="block";
			document.getElementById(cname+""+s).className=cclass;
		}else{
			document.getElementById(tname+""+s).style.display="none";
			document.getElementById(cname+""+s).className="";
		}
	}
}

function popshortmenu(){
	 if(document.getElementById('divShortmenu').style.display=='none'){
		 document.getElementById('divShortmenu').style.display='block';
	 }
 }

function closeshortmenu(){
	document.getElementById('divShortmenu').style.display='none';
}

function showBox(item_id,rs){
	
	TB_show('虚假举报','report.php?house_id='+item_id+'&height=170&width=420&modal=true&rnd='+Math.random()+'&reason='+rs,false);
}

function mailBox(item_id,rs){
	TB_show('发送邮件',encodeURI(rs)+'&height=170&width=420&modal=true&rnd='+Math.random(),false);
}

