// JavaScript Document
 
  $(document).ready(function(){
  
      
  
  
  
  
});


function clear_textbox()
{
var box = document.getElementById('email');
if (box.value == "Enter Email...")
{
box.value = "";
box.style.fontStyle = "normal";
box.style.color = "Black";
}
}

function fill_textbox()
{
var box = document.getElementById('email');
 if (box.value == "") {

box.value = "Enter Email...";
box.style.fontStyle = "italic";
box.style.color = "#999999"; }

}





  
  
