function SpeedTestVerify(form) 
{
	var acbox = form["AreaCode"];
	ac = acbox.value.replace(/^\s+/,'');
	var reac = /\d\d\d/
	if (!reac.test(ac)) alert("Please enter a valid area code")
	else 
		{
			var ct = form["CType"];
			var CType = "";
			for(i=0; i<ct.length; i++)
				{
					if(ct[i].checked) CType = ct[i].value
				}
			window.location.href = "http://msn-cnet.com.com/7018-7254_7-0.html?CType=" + CType + "&ac=" + ac + "&subj=speed&part=msn-cnet&tag=speed";
		}
	return false;
}