function MouseOver(name)   {
document.images[name].src = eval(name + "_mouseover.src");
}
function MouseDown(name)   {
document.images[name].src = eval(name + "_mousedown.src");
}
function MouseOut(name)  {
document.images[name].src = eval(name + ".src");
}
 
function popup(url, title, width, height) {
        if ( width == 0) { width = 450; }
        if ( height == 0 ) { height = 300; }
        if ( title == "") { title = "popup"; }
        newwin = window.open(url, title, "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + "");
        newwin.opener = self;
}
 
function do_mail_links() {
	var x1 = 'homepage';
	var y1 = 'collinstarkweather';
	var z1 = 'com';
	var e1 = x1 + '@' + y1 + '.' + z1;
	var f1 = 'Send an E-mail';
	var e2 = x1 + '@' + y1 + '.' + z1;
	var f2 = 'e-mail';
	var e3 = x1 + '@' + y1 + '.' + z1;
	var f3 = 'know';
	var e4 = x1 + '@' + y1 + '.' + z1;
	var f4 = x1 + '@' + y1 + '.' + z1;

	if (window.document.getElementById('address1') != null) {
		window.document.getElementById('address1').innerHTML = '<a class="nav" href="mailto:' + e1 + '">' + f1 + '</a>';
	}
	if (window.document.getElementById('address2') != null) {
		window.document.getElementById('address2').innerHTML = '<a class="nav" href="mailto:' + e2 + '">' + f2 + '</a>';
	}
	if (window.document.getElementById('address3') != null) {
		window.document.getElementById('address3').innerHTML = '<a class="nav" href="mailto:' + e3 + '">' + f3 + '</a>';
	}
	if (window.document.getElementById('address4') != null) {
		window.document.getElementById('address4').innerHTML = '<a class="nav" href="mailto:' + e4 + '">' + f4 + '</a>';
	}
}

