function clearform(d,id)
{
var vl = document.getElementById(id).value;
if (vl == d) { document.getElementById(id).value = ''; }
}
function checkform(d,id)
{
var vl = document.getElementById(id).value;
if (vl == '') { document.getElementById(id).value = d; }
}