// JavaScript Document
function optinAlert()
{
	alert('OOPS - Please put your name/e-mail in the box on this page to get access to everything!');
	namefield = document.getElementById('namefrm1');
	namefield.focus();

	return false;
}
