function txtPostCode_OnKeyDown(e)
{
	if (e.keyCode != 13) return; 

	if (window.event)
		window.event.returnValue = null; 
	else
		e.preventDefault();
	
	window.location = Csn.$(EndecaPowerPostcode_btnGo).href;
}
