	{		var x = screen.height
	
			var page_crumb =  document.getElementById("page_crumb")
				page_crumb.style.width='750'
				page_crumb.style.height='30'
				page_crumb.style.padding = '2px'
				page_crumb.className = 'header'
			
			var container = document.getElementById("container")
				container.style.width='750'
				if (x > 610)
					{container.style.height='75%'}
				else if (x < 610)
					{container.style.height='35%'}
	}
//locations...
	if (document.getElementById("locations") != undefined)
		{
			var locations = document.getElementById("locations")
			if (x > 610)
				{locations.style.height=460}
			else if (x < 610)
				{locations.style.height=300}
		}

//results...
	if (document.getElementById("results") != undefined)
		{
			var results = document.getElementById("results")
			if (x > 610)
				{results.style.height=380}
			else if (x < 610)
				{results.style.height=250}
		};