function Download_Validator(theForm){
	if ( theForm.Name.value == "" || theForm.Name.value == "enter your name" || theForm.Name.value.length < 3 ) {
	  alert("Please enter your name.");
	  theForm.Name.focus();
	  return (false);
	}
	
	if ( theForm.Email.value == "" || theForm.Email.value.length < 6 || theForm.Email.value.search('@') == -1 || theForm.Email.value.search('.') == -1 || theForm.Email.value.search(' ') != -1){
	  alert("Please enter your E-mail.");
	  theForm.Email.focus();
	  return (false);
	}
	return (true);
}

function addbookmark(){ 
	bookmarkurl="http://www.slotfevercasino.com";
	bookmarktitle="Slot Fever Casino";
	if (document.all) window.external.AddFavorite(bookmarkurl,bookmarktitle);
}