<!--
function killErrors() {
return true;
}
//window.onerror = killErrors;



function setobj(obj,id,userId)
{
if(id == userId)
{
	alert("不能自言自语");
	return;
}
	
var iscontinue=true;
for (i=0; i<parent.bottom.document.forms[0].oBottom_ddlToWho.length; i++)
{
	if (parent.bottom.document.forms[0].oBottom_ddlToWho.options[i].value==id)
	{
		parent.bottom.document.forms[0].oBottom_ddlToWho.selectedIndex = i;
		iscontinue=false;
		break;
	}
}
if (iscontinue==true)
{
	var oOption = parent.bottom.document.createElement('OPTION');
	parent.bottom.document.forms[0].oBottom_ddlToWho.add(oOption, 1);
	parent.bottom.document.forms[0].oBottom_ddlToWho.options[1].value=id;
	parent.bottom.document.forms[0].oBottom_ddlToWho.options[1].text=obj;
	parent.bottom.document.forms[0].oBottom_ddlToWho.selectedIndex=1;
	parent.bottom.document.forms[0].oBottom_ddlToWho.focus();
}
}



function chbClick(chb,src)
{
if(chb.checked==true)
{
src.disabled=false;
src.focus();
}
else{
//src.value="";
src.disabled=true;
}
}


function rolloverButton_over(){
exit_object.className="tableborderOver";
}
function rolloverButton_up(){
exit_object.className="tableborder";
}
function logoutsystem(){
	if (confirm("您真的要退出系统么？"))
	{
		self.location='logoff.aspx'
	}
}
	
	
function suredel(){
if (confirm("您确定要删除么？"))
	{

	}
	}
	
	

function divshow(i,a){
if (i.style.display == "none") {
		i.style.display = "";
	}else{
		i.style.display = "none";
	}
}
-->