﻿$j(document).ready(function() {
    InitRegionLookup();
});
function InitRegionLookup()
{
    //$j("#aspnetForm").validationAideEnable(null, {hideErrorMessages:true,summaryContainerId:"ClientValidationSummary"});
	$j("#Master_MainContentPlaceHolder_ucRegionLookup_lnkRegionLookup").validationAideDisableOnClick("#aspnetForm");
	$j("#Master_MainContentPlaceHolder_ucRegionLookup_txtPostcode").bind("keydown", function(e){
	    if(e.keyCode == 13){
			$j("#Master_MainContentPlaceHolder_ucRegionLookup_lnkRegionLookup").click();return false;
		}
	});	
}

