// JavaScript Document
function clean (text) {
  if (text.value=='Tu email' || text.value=='Tu mensaje')
    text.value = '';
}

function cleanFecha (text) {
  if (text.value=='D\xEDa' || text.value=='Mes' || text.value=='A\xF1o')
    text.value = '';
}