
function rollover(img)
{
	document.images[img].src = "images/nav_" + img + "_on.gif";
}
function rollout(img)
{
	document.images[img].src = "images/nav_" + img + ".gif";
}
/*
i1 = new Image(); i1.src = "images/nav_home_over.gif";
*/

function openTerms()
{
	newwin = window.open("/terms.html","terms","width=405,height=400,scrollbars=yes");
}

function openPrivacy()
{
	newwin = window.open("/privacy.html","terms","width=405,height=400,scrollbars=yes");
}

//Protect Email From Spammers
function protectEmail(user, domain){
	email = user + '@' + domain;
	email = '<a href="mailto:' + email + '">' + email + '</a>';
	document.getElementById("giveOrTakeEAddress").innerHTML = email;
}
