/*----------------------------*/
/* Nelson Roofing             */
/* Main JavaScript            */
/* Copyright 2005 Jonathon VS */
/* http://www.jonathonvs.com/ */
/*----------------------------*/

// Cloaks e-mail addresses
function email(name)
{
	var domain = "nelsonroofing.com";
	location.href=("mail" + "to:" + name + "@" + domain + "?subject=Nelson Roofing Query");
}

// Opens Site Info webpage
function openWin(url)
{
	window.open(url,'newWindow3','width=505,height=406,toolbar=0,scrollbars=1,status=0,menubar=0,resizeable=0');
	window.reload;
}

// Adjusts page size to fit all screens comfortably
function resizeDoc2()
{
	var styles = 0;
	var choice = 0;
	
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		choice = document.documentElement.clientHeight - 128;
		if (document.documentElement.clientWidth >= 700)
			sides = document.documentElement.clientWidth - 114;
		else sides = document.documentElement.clientWidth - 40;
	}
	else
	{
		choice = window.innerHeight - 128;
		if (window.innerWidth >= 700)
			sides = window.innerWidth - 115;
		else sides = window.innerWidth - 40;
		
		document.getElementById('f').focus();
		document.getElementById('f').style.mozUserFocus='normal'; 
	}
	
	$("header").style.width = (sides - 2) + "px";
	$("body").style.height = choice + "px";
	$("body").style.width = sides + "px";
	$("links").style.height = (choice + 1) + "px";
	$("main").style.height =  (choice - 10) + "px";
	$("main").style.width = (sides - 196) + "px";
}

window.addEvent('domready', resizeDoc2);
window.addEvent('resize', resizeDoc2);