// ###########################
// created by: Ben Weeks
// Created Date: 23rd May 2008
// Company: webtechy.co.uk
//
// Modified By: 
// Modified Date: 
// Modified Comment: 
//
// Modified By: 
// Modified Date:
// Modified Comment: 
//
// Modified By: 
// Modified Date: 
// Modified Comment: 
//
// Version: 1.0
// ###########################

function SendVote(iRating)
{
	try{
		if (iRating < 2 && iRating > 0)
		{ 
			location.href = "http://www.govmetric.com/WebMetric/websatisfaction.aspx?metric1.x=y&organisationid=349&referoverride=" + escape(location.href);
		}
		if (iRating < 3 && iRating > 1)
		{
			location.href = "http://www.govmetric.com/WebMetric/websatisfaction.aspx?metric2.x=y&organisationid=349&referoverride=" + escape(location.href);
		}
		if (iRating < 4 && iRating > 2)
		{
			location.href = "http://www.govmetric.com/WebMetric/websatisfaction.aspx?metric3.x=y&organisationid=349&referoverride=" + escape(location.href);
		}
	}
	catch(er)
	{
		// Oh well, it didn't work out - better luck next time.
	}	
}