//****************确认删除****************
function checkDel()
{
	if(confirm("Are you sure to delete?"))
	{
		return true;
	}
	else
	{return false;}
}



//*************警告并跳转*************
//参数	msg,add
//作用	msg = 提示信息
//			add = 跳转链接地址
//			type = 跳向地址或向后
//			1 = 向后 2 = 地址
//**********************************
function winAlert(msg,type,add)
{
	var msg,add,type;
	window.alert(msg);
	if (type == 1)
	{
		window.history.go(-1);
	}
	else if(type ==2)
	{
		window.location.href=add;
	}
}
//**************************************
//作用    将非正常字符反编译
//参数    text
//作用    text = 非正常字符
//**************************************
function unEscape(text)
{
	var text;
	text = unescape(text);
	document.write(text);
}