// JavaScript Document
function insert(table, fields, values, data)
{
	document.getElementById('progress_div').innerHTML = "<img src=http://www.gmapinoytv.com/pinoyhiphop/images/loading.gif height=16 /> <br>Please wait... Your request is being processed.";
	var xmlHttp;
	var id
	
	try
	{
	// Firefox, Opera 8.0+, Safari
	xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
	// Internet Explorer
		try
		{
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
			alert("Your browser does not support AJAX!");
			return false;
			}
		}
	}
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			//document.getElementById(id).innerHTML = xmlHttp.responseText;
			document.getElementById('progress_div').innerHTML=""
			/*if(xmlHttp.responseText=="notlogged")
			{
				alert( "You must be logged in to vote")
				window.location="http://www.gmapinoytv.com/projectvogue/login"
			}
			else if(xmlHttp.responseText=="voted_four_times")
			{
				alert( "Sorry, you are only allowed to vote four times")
				window.location="http://www.gmapinoytv.com/projectvogue/videos"
			}
			else
			{
				alert(xmlHttp.responseText)
			} */
            var response 
            
            response = xmlHttp.responseText.split("|"); 
            alert(response[0])
            window.location=""+response[1];
                           
		}
	}
	xmlHttp.open("GET","http://www.gmapinoytv.com/pinoyhiphop/query.php?query=insert&table="+table+"&fields="+fields+"&values="+values+"&data="+data,true);
	xmlHttp.send(null);
}