function openShutManager(oSourceObj,oTargetObj,shutAble,oOpenTip,oShutTip)
{
	var sourceObj = typeof(oSourceObj) == "string" ? document.getElementById(oSourceObj) : oSourceObj;
	var targetObj = typeof(oTargetObj) == "string" ? document.getElementById(oTargetObj) : oTargetObj;
	var openTip = oOpenTip || "";
	var shutTip = oShutTip || "";
	if(targetObj.style.display!="none")
	{
	   if(shutAble)
	   		return;
	   targetObj.style.display="none";
	   if(openTip  &&  shutTip)
	   {
			sourceObj.innerHTML = shutTip; 
	    }
	}
	else
	{
	   targetObj.style.display="block";
	   if(openTip  &&  shutTip)
	   {
		sourceObj.innerHTML = openTip; 
	   }
	}
}



/*
window.onload = function()
{
var alist = document.getelementsbytagname('a');
var icount = alist.length;
for(var i = 0;i<icount;i++)
{

if(!chkmylink(alist[i].href,alist[i].innerhtml))
{
alist[i].classname ='other';
}
}
}

///s是链接的url,innerhtml是链接文本
function chkmylink(s,innerhtml)
{
if(innerhtml.replace( /^\s* /,"").match(/^\<img/gi)) return true;
var reg = /^http\:\/\//gi;
if(s.match(reg))
{
reg = /^http\:\/\/www.862345.com/gi;
if(s.match(reg))
{
return true;
}
else
{
return false;
}
}
return true;
}
*/

