
function searchPostcodeDetails(suburb,postcode)
{jQuery("#postcodeOutputDiv").html("<table align=center border=0 cellpadding=0 cellspacing=0><tr><td height=0><font size=1><font color=#FF0000><b>Searching .. </b></font></font></td></tr></table>");jQuery.get("postcode_includes/postcodelookup.php",{Suburb:suburb,Postcode:postcode},function(data)
{var results;var output="<table style='line-height: 10px' align=center  width=142 cellpadding=0 cellspacing=0 border=0><tr align=center valign=middle><td><div align=justify><div style='font-size:9px'><font color=#FF0000><b>No results! Please ensure that Suburbs/Towns be spelled correctly and that Postcodes match locations.</font> </b></font</div></div></td></tr></table>";if(data.length>0)
{output="";results=data.split("|");for(var i=0;i<results.length;++i)
{output+="Suburb/Town: "+results[i++]+"<br/>";output+="State: "+results[i++]+"<br/>";output+="Postcode: "+results[i]+"<br>";output+="";}}
jQuery("#postcodeOutputDiv").html(output);});}function clearFields()
{document.postcodelookupForm.suburb.value=""
document.postcodelookupForm.postcode.value="";jQuery("#postcodeOutputDiv").html("");}