function contact(){

top.location = 'mailto:iallen@aol.com';

}



function pageHeight() {

//# This script is designed to alter your main content div min-height

var contentdiv = "content"; //enter your content div ID here

//# The figure require to minus from the height of the window == the height of the 'Chrome' of a window 
//# plus any header/footer heights, and margin/paddings! In this case the header/footer total px height
//# is 152.

var headfoot = "1"; //enter your page header footer pixels total here (including padding and margin totals)


//# Each browser type has its own chrome height:
//# Firefox = 206 (ish)
//# IE      = 106 (ish)
//# Chrome  = 118 (ish)
//# Opera   = 162 (ish)
//# Safari  = 150 (ish)

	if(bName == "Explorer" && bVer == "6")
	{

		var brChrome = 425;

		var wheight = screen.availHeight;
		var heighttemp = parseInt(brChrome)+parseInt(headfoot);
		var nheight = wheight-heighttemp;

		document.getElementById(contentdiv).style.height=nheight+"px";
	}
	else
	{

		if (bName == "Explorer")
		{
			var brChrome = 500;
		}
		else if (bName == "Firefox")
		{
			var brChrome = 480;
		}
		else if (bName == "Opera")
		{
			var brChrome = 500;
		}
		else if (bName == "Safari")
		{
			var brChrome = 500;
		}
		else if (bName == "Chrome")
		{
			var brChrome = 500;
		}
		else
		{
			var brChrome = 500;
		}

		var wheight = screen.availHeight;
		var heighttemp = parseInt(brChrome)+parseInt(headfoot);
		var nheight = wheight-heighttemp;

		document.getElementById(contentdiv).style.minHeight=nheight+"px";
	}
}





/** Added from quirksmode to replace old detect method **/
/** http://www.quirksmode.org/js/detect.html           **/

var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{
			string: navigator.userAgent,
			subString: "Chrome",
			identity: "Chrome"
		},
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari",
			versionSearch: "Version"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();

var bName = BrowserDetect.browser;
var bVer = BrowserDetect.version;



window.onload = function (){pageHeight();}
