function moveout(fullname,value){
switch(fullname){
case "phone":if(value==""){document.estimate.phone.value = "123-456-7890";document.estimate.phone.style.color = '#999999'}break;
case "fullname":if(value==""){document.estimate.fullname.value = "Enter Name";document.estimate.fullname.style.color = '#999999'}break;
case "email":if(value==""){document.estimate.email.value = "Enter Email";document.estimate.email.style.color = '#999999'}break;
}
}
function movein(fullname){
switch(fullname){
case "phone":if(document.estimate.phone.title == document.estimate.phone.value){document.estimate.phone.value = '';document.estimate.phone.style.color = '#000000';}break;
case "fullname":if(document.estimate.fullname.title == document.estimate.fullname.value){document.estimate.fullname.value = '';document.estimate.fullname.style.color = '#000000';}break;
case "email":if(document.estimate.email.title == document.estimate.email.value){document.estimate.email.value = '';document.estimate.email.style.color = '#000000';}break;
}
}