function ok()
{
	if(document.form1.code.value != "")
	{
		window.location = "http://www.empowernetwork.com/almostasecret.php?id=" + document.form1.code.value;
	}
	else
	{
		alert("Please enter your invite code");
	}
}
window.onload = function()
{
	document.form1.code.focus();
}
