function highlightField(field)
{
	
	if (!document.getElementById)
	{
		return false;	
	}
	document.getElementById(field).focus();
}

window.onload = function()
				{
					if(window.location.hash == "#form")
					{
						highlightField("name");
					}
				};