function reveal_fullSize(image, width, height, alt, desc)
{
document.images["fullSize"].src = image;
document.images["fullSize"].height = width;
document.images["fullSize"].width = height;
document.images["fullSize"].alt = alt;
document.getElementById("photo_title").innerHTML = alt;
document.getElementById("photo_description").innerHTML = desc;
document.images["fullSize"].style.borderStyle = 'solid';
document.images["fullSize"].style.borderWidth = '1px';
document.images["fullSize"].style.borderColor = '#000000';
}
function close_fullSize(image, width, height, alt, desc)
{
document.images["fullSize"].src = 'http://www.cierawebdesign.com/required/images/photos_default.gif';
document.images["fullSize"].height = 0;
document.images["fullSize"].width = 0;
document.images["fullSize"].alt = '';
document.images["fullSize"].border = 0;
document.getElementById("photo_title").innerHTML = '';
document.getElementById("photo_description").innerHTML = '';
document.images["fullSize"].style.borderWidth = '0';
}
function simplePreload()
{ 
 var args = simplePreload.arguments;
 document.imageArray = new Array(args.length);
 for(var i=0; i<args.length; i++)
 {
document.imageArray[i] = new Image;
document.imageArray[i].src = args[i];
 }
}

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';

  }

} 

