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 = '#333333';
}
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];
 }
}
