// JavaScript Document
<!--
function check_fields(whichbox)
{
    if(whichbox.value == 'First Name' || whichbox.value == 'Last Name' || whichbox.value == 'Email' || whichbox.value == 'Phone (numbers only)')
    {
      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 (numbers only)';
	}  
}
-->