function setImage(theImage)
{
     document.getElementById('pic').src = theImage.src;
     document.getElementById('pic').focus();
     location.href = "#";
     //alert(this.src);
     //alert(this);
     //alert(theImage.src);
}

function swapImage(thumb)
{
	document.getElementById('fullSizeImage').src = thumb.src.replace('thumb', 'full');
}

function goToUrl(url)
{
     location.href = url;
     //alert(url);

}
