var obj = new clsAjax();
function testajax(){
document.getElementById('zonepromote').innerHTML = "loading...";
obj.create();
obj.url = "get.php";
obj.method = "POST"
obj.addParam("txt", document.form1.data.value);
obj.function_name = "testdata()"; 
obj.send();
}

function testdata(){
document.getElementById('zonepromote').innerHTML = obj.responseText;
}
function testdata2(){
document.getElementById('zoneplayer').innerHTML = obj.responseText;
}

function reqData(settime)
{
	obj.create();
	obj.url = "getPromotevdo.php";
	obj.method = "POST"
	obj.addParam("settime",settime);
	obj.function_name = "testdata()"; 
	var xxx=obj.send();
}

function reqPlayvdo(settime)
{
	obj.create();
	obj.url = "getIndexvdo.php";
	obj.method = "POST"
	obj.addParam("settime",settime);
	obj.function_name = "testdata2()"; 
	var xxx=obj.send();
}