function doChkG()
{
	var mylist = document.getElementById("chkg");
	var gstr = mylist.options[mylist.selectedIndex].text;
	if (gstr=="Check our ranking...")
		{ 
		document.getElementById("gresult").innerHTML="";
		return;
		}
	var newcont="<input type=submit style='float: right;' value='X' title='Close Results' onClick='gReset();'><h3 style='margin-top: 10px; color:#cc0000;'>Scroll down to find us on the first page of Google's results</h3><br clear=right><iframe id='inGo' src='http://www.google.co.uk/search?q=";
	newcont=newcont+gstr;
	newcont=newcont+"&num=20'></iframe>";
	document.getElementById("gresult").innerHTML=newcont;
}

function gReset()
{
		document.getElementById("gresult").innerHTML="";
		var mylist = document.getElementById("chkg");
		mylist.selectedIndex = 0;
}

function readCookie(name)
{
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++)
	{
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}

function Currency()
{
	cook = readCookie('currency');
	if(cook < 1) cook=1;
	return cook;
}

function GCalcUK()
{
	ticks = (document.gform.mot.checked ? 1 : 0) + (document.gform.kwr.checked ? 1 : 0) + (document.gform.rec.checked ? 1 : 0) + (document.gform.gca.checked ? 1 : 0) + (document.gform.sub.checked ? 1 : 0);
	grand = (document.gform.mot.checked ? 99 : 0) + (document.gform.kwr.checked ? 299 : 0) + (document.gform.rec.checked ? 499 : 0) + (document.gform.gca.checked ? 299 : 0) + (document.gform.sub.checked ? 99 : 0);
	document.gform.offtag.value="";
	if(ticks==0) {
		document.gform.gobut.className="deadbut";
	} else {
		document.gform.gobut.className="livebut";
		}
	document.gform.gtotal.value = grand.toFixed(2);
}
function GCalcUSA()
{
	ticks = (document.gform.mot.checked ? 1 : 0) + (document.gform.kwr.checked ? 1 : 0) + (document.gform.rec.checked ? 1 : 0) + (document.gform.gca.checked ? 1 : 0) + (document.gform.sub.checked ? 1 : 0);
	grand = (document.gform.mot.checked ? 185 : 0) + (document.gform.kwr.checked ? 749 : 0) + (document.gform.rec.checked ? 899 : 0) + (document.gform.gca.checked ? 549 : 0) + (document.gform.sub.checked ? 185 : 0);
	document.gform.offtag.value="";
	if(ticks==0) {
		document.gform.gobut.className="deadbut";
	} else {
		document.gform.gobut.className="livebut";
		}
	document.gform.gtotal.value = grand.toFixed(2);
}

function GCalc()
{
	if(Currency() == 1) GCalcUK();
	else GCalcUSA();
}
