function SlideDIV(Obj,Num,allNum){
var thisObj=document.getElementById(Obj);
//if(thisObj.className == "active")return;
//var tabObj = "myTab1";
//var tabList = document.getElementById(tabObj).getElementsByTagName("li");
for(i=1; i <allNum+1; i++)
{
  if (i == Num)
  {
   //thisObj.className = "active"; 
 document.getElementById(Obj+'_'+i).style.display = "block";
 document.getElementById(Obj+i).className="up" ;
  }else{
  document.getElementById(Obj+'_'+i).style.display = "none";
 document.getElementById(Obj+i).className="" ;
 }
// alert(Num);
} 
}
function loadUNION(c, s, w, h)
{
	try{
		//$(c).innerHTML = $(s).innerHTML;
		document.getElementById(c).innerHTML = document.getElementById(s).innerHTML;
		document.getElementById(s).innerHTML= "";
		//document.write('<style>');
		//document.write('#'+c+'{position:static!important; display:block!important;');
		//if (w)document.write('width:'+w+'px!important;');
		//if (h)document.write('height:'+h+'px!important;');
		//document.write('}</style>');
	}catch (e){/*do not*/}
} 

function setUNIONSize(s, w, h)
{
	try
	{
		document.getElementById(s).style.width = w;
		document.getElementById(s).style.height = h;
	}
	catch (e)
	{/*do not*/}
}

/*hideText*/
function copyUrl(url){
var content='';
window.clipboardData.setData("Text",url);
alert("复制成功，您可以同时按 CTRL+V 键粘贴到 QQ/MSN 上推荐给你的好友");
}
