//blur for ONE
function focusONE() {
 if (document.shareform.toEmail.value =='Email Address' ) {
 document.shareform.toEmail.value="" 
 }
 }
 
function blurONE() {
 
 if (document.shareform.toEmail.value =='') {
  document.shareform.toEmail.value ='Email Address'
  }
 
 }
 
//blur for TWO
function focusTWO() {
 if (document.shareform.fromEmail.value =='Email Address' ) {
 document.shareform.fromEmail.value="" 
 }
 }
 
function blurTWO() { 
 if (document.shareform.fromEmail.value =='') {
  document.shareform.fromEmail.value ='Email Address' 
  }
 
 }
 
 

