function fieldclick(theobject) {
    if((theobject.value == "Name") || (theobject.value == "Email")) {
        theobject.value='';
    }
    theobject.style.color='#000';
    
}

function fieldout(theobject) {
    if(theobject.value=='') {
        if(theobject.name=='name') {
            theobject.value="Name";
        }
        else {
            theobject.value="Email";
        }
        theobject.style.color='#919191';
    }
}