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

