// JavaScript Document
function set_position(order,vid,divid)
{
	var url   		= "live-profilevideo_set_position.php?vid="+vid+"&order="+order+"&d_id="+divid;
	var containerID = "load_order"+divid;
	xmlHttp1 = GetXmlHttpObject1(); 
	xmlHttp1.onreadystatechange = function(){
		
		
		if (xmlHttp1.readyState<4)
		{
			document.getElementById(containerID).innerHTML = "<strong>Setting Order</strong>";
        }
		else if (xmlHttp1.readyState == 4)
		 {
              if(xmlHttp1.status && xmlHttp1.status==200)
        	    	document.getElementById(containerID).innerHTML =xmlHttp1.responseText;
         }
		  
	  }
	xmlHttp1.open("GET",url,true);
	xmlHttp1.send(null);
} 
function GetXmlHttpObject1()
{
	var xmlHttp1=null;
	try
  	{
  		// Firefox, Opera 8.0+, Safari
  		xmlHttp1=new XMLHttpRequest();
  	}
	catch (e)
  	{
  		// Internet Explorer
  		try
    	{
    		xmlHttp1=new ActiveXObject("Msxml2.XMLHTTP");
    	}
  	catch (e)
    {
    	xmlHttp1=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp1;
}