// JavaScript Document
function ClearInput(value, id){ // This calls our function ClearInput, and the two variables we will need for it to function the original value and the id.
var input = document.getElementById(id); // Gets the input field based on its id.

if(input.value == ''){ // If the default value is equal to the current value.
input.value = value; // Empty It.
} // End Else.
} // Close Function.

