// JavaScript Document
$(window).load(function() { 
	$('#postcode').focus();
});

function check_adv_search_form() {
	var form = document.advSearchForm;
    var toCheck = form.postcode.value;
    toCheck = checkPostCode(toCheck);
    if(toCheck === false) {
        show_message("message = 'Please input your post code as in the following example: SO22 6EW';", "success");
        form.postcode.focus();
        return false;
    }
    form.postcode.value = toCheck;
    return true;
}