function httprequest()
{
	var xmlhttp=false;
	try
	{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		try
		{
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(e)
		{
			xmlhttp = false;
		}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined')
	{
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}



function vote_weborama_thienou()
{
	http01 = httprequest();	
	http01.open("POST","votes_weborama.php",true);
	http01.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
	http01.onreadystatechange = function() 
	{
		if (http01.readyState == 4 && http01.status == 200)
		{			
			
		}		
	}
	http01.send("act_inter=vote_weborama_thienou");
}
