//baristascript.js

function validateIndex()	{
	if (document.getElementById('terms').checked)	{
		var goto = location.host;
		alert(goto);
		location.href = goto + '/home.html';
		
	}	else	{
		alert('please agree to the terms before entering')
		}
}