// JavaScript Document
function vider(field,word) {
if (document.getElementById(field).value==word)
{
document.getElementById(field).value="";
}
}
