// JScript File

function PostcodeFinder()
{

// alert("hi");
  // alert(document.forms['aspnetForm'].action);

   var tempstr;
   var pstcode;
   pstcode = document.forms['aspnetForm'].P.value;
tempstr='http://www.anglianhome.co.uk/in-your-area/summary.aspx?P='+pstcode;
 document.forms['aspnetForm'].action=tempstr;
   document.forms['aspnetForm'].submit(); 
  
}

function SearchSubmitForm()
	{
		var SearchStr = document.getElementById("SearchQuery").value;
		document.search_form.action = "/search-results/index.aspx";
		document.search_form.submit();
		return true;
	}
	
		
function PostcodeFinderForAboutUs()
{
    var tempstr;
    tempstr='http://www.anglianhome.co.uk/in-your-area/summary.aspx';
    document.forms['aspnetForm'].action=tempstr;
    document.forms['aspnetForm'].submit(); 
}
