<!--
function FP_popUpMsg(msg) {//v1.0
 alert(msg);
}
// -->

<!--
function Form3_Validator(theForm3)
{

if (theForm3.p_word.value != theForm3.password2.value)
{
	alert("The two passwords are not the same.");
	theForm3.password2.focus();
	return (false);
}
}

//-->


<!--
function Form1_Validator(theForm)
{

if (theForm.email.value == "")
{
	alert("The \"E-Mail Address\" field cannot be left blank.");
	theForm.email.focus();
	return (false);
}
}

//-->
  

<!--
function Form2_Validator(theForm2)
{
  	if (theForm2.firstname.value == "")
  {
    alert("Please enter a value for the \"firstname\" field.");
    theForm2.firstname.focus();
    return (false);
  }
  	if (theForm2.lastname.value == "")
  {
    alert("Please enter a value for the \"lastname\" field.");
    theForm2.firstname.focus();
    return (false);
  }
	if (theForm2.username.value == "")
  {
    alert("Please enter a value for the \"username\" field.");
    theForm2.firstname.focus();
    return (false);
  }
	if (theForm2.email.value == "")
  {
    alert("Please enter a value for the \"email\" field.");
    theForm2.email.focus();
    return (false);
  }	
  	if (theForm2.password.value == "")
  {
    alert("Please enter a value for the \"password\" field.");
    theForm2.email.focus();
    return (false);
  }
	if (theForm2.password.value != theForm2.confirm.value)
	{
		alert("The two passwords are not the same.");
		theForm2.confirm.focus();
		return (false);
	}
}

//-->

<!--
function Form4_Validator(theForm4)
{
  	if (theForm4.fan_name.value == "")
  {
    alert("Please enter a value for the \"fan_name\" field.");
    theForm2.fan_name.focus();
    return (false);
  }
  	if (theForm4.lastname.value == "")
  {
    alert("Please enter a value for the \"lastname\" field.");
    theForm4.lastname.focus();
    return (false);
  }
	if (theForm4.nick_name.value == "")
  {
    alert("Please enter a value for the \"nick_name\" field.");
    theForm4.nick_name.focus();
    return (false);
  }
	if (theForm4.fan_contact_info.value == "")
  {
    alert("Please enter a value for the \"fan_contact_info\" field.");
    theForm4.fan_contact_info.focus();
    return (false);
  }	
    if (theForm4.fan_pic.value == "")
  {
    alert("Please enter a value for the \"fan_pic\" field.");
    theForm4.fan_pic.focus();
    return (false);
  }
  	if (theForm4.password.value == "")
  {
    alert("Please enter a value for the \"password\" field.");
    theForm4.email.focus();
    return (false);
  }
	if (theForm4.password.value != theForm2.confirm.value)
	{
		alert("The two passwords are not the same.");
		theForm4.confirm.focus();
		return (false);
	}
}

//-->

<!--

function change(id){
     ID = document.getElementById(id);
    
     if(ID.style.display == "")
          ID.style.display = "none";
     else
          ID.style.display = "";
}

// -->