// JavaScript Document   

function in1() {   
var key = document.getElementById("Email Address");   
    key.value = "";   
}   

function out1() {   
var key = document.getElementById("Email Address");   
   if(key.value == "") {   
     key.value = "Enter Email Address";   
   }    
} 

function in2() {   
var key = document.getElementById("First Name");   
    key.value = "";   
}   

function out2() {   
var key = document.getElementById("First Name");   
   if(key.value == "") {   
     key.value = "Enter First and Last Name";   
   }    
} 