// JavaScript Document

function ShowPreview($imageName)
{
	if (document.getElementById && (element = document.getElementById('ImagePreview'))) 
	{
		document.getElementById('ImagePreview').style.backgroundImage = 'url(' + $imageName + ')';
	}
}
function HideGalleryNavigation()
{
	if (document.getElementById && (element = document.getElementById('GalleryNavigation'))) 
	{
		document.getElementById('GalleryNavigation').style.display ='none';
	}
}
function ShowGalleryNavigation()
{
	if (document.getElementById && (element = document.getElementById('GalleryNavigation'))) 
	{
		document.getElementById('GalleryNavigation').style.display ='block';
	}
}	

function Write($Content)
{
	document.write($Content);
}