function tellFriend(){
	if (document.FTELL.my_name.value.length <=0){
		alert("Please enter your name");
		document.FTELL.my_name.focus();
		return;
	}
	if (document.FTELL.my_email.value.length <=0){
		alert("Please enter your email");
		document.FTELL.my_email.focus();
		return;
	}
	if (document.FTELL.friend_name.value.length <=0){
		alert("Please enter friend name");
		document.FTELL.friend_name.focus();
		return;
	}
	if (document.FTELL.friend_email.value.length <=0){
		alert("Please enter friend email");
		document.FTELL.friend_email.focus();
		return;
	}

	document.FTELL.TELLACT.value=1;
	document.FTELL.action = 'tell_friend.php';
	document.FTELL.submit();

}

function mailing_list(){
	if (document.FMAILING.email.value.length == 0 ){
		alert("Please enter email address");
		document.FMAILING.email.focus();
		return;
	}
	document.FMAILING.MAILINGACT.value = 1;
	document.FMAILING.action = "mailing_list.php";
	document.FMAILING.submit();
}

function login(act){
	if (document.FLOGIN.username.value.length == 0 ) {
		alert("Please enter username!");
		document.FLOGIN.username.focus();
		return;
	}
	document.FLOGIN.action= act;
	document.FLOGIN.submit();
}

