
function songbox(str)
{
var httpUrl="/box/SaveAllBox.asp?id="+str+"&action=song";
//alert(httpUrl);
var obj_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	obj_xmlhttp.open("post",httpUrl,false);
	obj_xmlhttp.send();
	if (obj_xmlhttp.readyState==4){
	 var errmsg=obj_xmlhttp.getResponseHeader("errmesage");
		alert(errmsg);
	}
}
function specialbox(str)
{
var httpUrl="/box/SaveAllBox.asp?id="+str+"&action=special";
//alert(httpUrl);
var obj_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	obj_xmlhttp.open("post",httpUrl,false);
	obj_xmlhttp.send();
	if (obj_xmlhttp.readyState==4){
	 var errmsg=obj_xmlhttp.getResponseHeader("errmesage");
		alert(errmsg);
	}
}
function xcopy(str,str1,str2,str3)
{
var httpUrl="/box/Xcopy.asp?id="+str+"&text="+str1+"&classname="+str2+"&boxname="+str3;
//alert(httpUrl);
var obj_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	obj_xmlhttp.open("post",httpUrl,false);
	obj_xmlhttp.send();
	if (obj_xmlhttp.readyState==4){
	 var errmsg=obj_xmlhttp.getResponseHeader("errmesage");
		alert(errmsg);
	}
}
function del(str,str1,str2)
{
var httpUrl="/box/Del.asp?id="+str+"&text="+str1+"&boxname="+str2;
//alert(httpUrl);
var obj_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	obj_xmlhttp.open("post",httpUrl,false);
	obj_xmlhttp.send();
	if (obj_xmlhttp.readyState==4){
	 var errmsg=obj_xmlhttp.getResponseHeader("errmesage");
		alert(errmsg);
	}
}