function btnLoginKeyDownHandler(sCtlName)
{
	if ((event.which && event.which == 13) || 
		(event.keyCode && event.keyCode == 13)) 
	{
		event.returnValue = false;
		event.cancel = true;
		document.getElementById(sCtlName).click();
	} 
	else 
	{
		return true;
	}
}

function setFocus (frmName, sCtlName)
{
	document.frmName.sCtlName.focus();
}

function propDirection()
{
	targetURL = 'PropertyDirection.aspx';
	PropertyDirection = window.open (targetURL, 'PropertyDirection', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height=400,width=410', borders=0);
	PropertyDirection.focus();
}
