function enable()
{
document.getElementById('email').value = '';
document.getElementById('email').style.color = '#000000';
}

function disable()
{
document.getElementById('email').value = 'your email';
document.getElementById('email').style.color = '#999999';
}

window.onload = disable;
function confirmIt(id, first, last, theURL){

  if(confirm('Do you want to delete ' + first + ' ' + last + '? This operation cannot be undone.')) {

    location.href = theURL + '?m=delete&id=' + id + '&t=mailView';
    
  }else{

    location.href = theURL + '?m=0';

  }

} 

