//HIDE PANELS
function sortPanels()
{
	hidepanel = document.getElementById("actionpanel");
	hidepanel.style.display = "none";
	
	showpanel = document.getElementById("thankspanel");
	showpanel.style.display = "inline";
}

function rateRecordRating(video_ID, selectedRating) 

{
	var xmlHttp; 

	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) 
	{ 
		
	} 
} 

//HIDE RATING PANEL & SHOW THANKS.
sortPanels();

//OPEN ASP PAGE IN BACKGROUND AND SEND VARIABLES OVER.
xmlHttp.open("GET","/ajax/recordRating.asp?video="+video_ID+"&rating="+selectedRating, true); 
xmlHttp.send(null);

}