function LoadImage(LinkObj)
{
    var ImageLocation = document.getElementById("ImageLocation");

    if(ImageLocation != null)
	{
		ImageLocation.src = LinkObj.href;
	}

    return false;
}
