// JavaScript Document

function reset() {
document.sendapage.name.value="";
document.sendapage.email.value="";
document.sendapage.friendmail1.value="";
}

function fmcontact() {

if (document.fcontact.name.value.length==0) {
alert("please enter your name");
return false;
}

if (document.fcontact.email.value.length==0) {
alert("please enter your email address");
return false;
}

if (document.fcontact.subject.value.length==0) {
alert("please enter a subject");
return false;
}

if (document.fcontact.message.value.length==0) {
alert("please enter your message");
return false;
}

document.fcontact.submit()
return true;
}


function fmmlist() {

if (document.fmlist.name.value.length==0) {
alert("please enter your name");
return false;
}

if (document.fmlist.email.value.length==0) {
alert("please enter your email address");
return false;
}

document.fmlist.submit()
return true;
}
