
function loadRight(cid,obj){
  jQuery("#sysRight").load(frontPath+"/Blueprint/IncludeRight.do",{cid:cid});
  return false;
}
var lastIdx=0;
function showLayer(cid){
  var url=frontPath+"/Blueprint/IncludeLayer.do?height=447&width=763&modal=true&cid="+cid;
  tb_show(null,url,false,'accountHeight()');
  lastIdx=0;
  return false;
}
function showContent(id,idx){
  if(id!=lastIdx){
    jQuery("#sysCon").load(frontPath+"/Blueprint/IncludeContent.do",{id:id});
    jQuery("#div"+idx).attr("class","bor_c7c7c7_rightnone");
    jQuery("#div"+lastIdx).attr("class","bor_c7c7c7_right");
    lastIdx=idx;
  }
  return false;
}
function accountHeight(){
  jQuery("#TB_window").css("left",(document.body.clientWidth-964)/2+404+'px');
  var height=document.getElementById('leftMenu').offsetHeight-document.getElementById('menu').offsetHeight;
  jQuery("#downDiv").css("height",height); 
}