// JavaScript Document
<!--
function check_fields(whichbox)
{
    if(whichbox.value == 'First Name' || whichbox.value == 'Last Name' || whichbox.value == 'Email' || whichbox.value == 'Phone Number' || whichbox.value == 'Your Name' || whichbox.value == 'Your Email' || whichbox.value == "Friend Name" || whichbox.value == "Friend Email")
    {
      whichbox.value = '';
	}  
}


function exit_fname(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = 'First Name';
	}  
}


function exit_lname(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = 'Last Name';
	}  
}


function exit_email(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = 'Email';
	}  
}


function exit_phone(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = 'Phone Number';
	}  
}

function exit_referrer_name(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = 'Your Name';
	}  
}

function exit_referrer_email(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = 'Your Email';
	}  
}

function exit_friend_name(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = "Friend Name";
	}  
}

function exit_friend_email(whichbox)
{
    if(whichbox.value == '')
    {
      whichbox.value = "Friend Email";
	}  
}
-->