/********************************************************************/
// COMMON FUNCTIONS
/********************************************************************/

var sImgPath = "pix";


function writeCaption ( txt )
{
	if ( document.getElementById( "captionDiv" ) && txt != "undefined" )
	{
		document.getElementById( "captionDiv" ).innerHTML = txt;
	}
}


function openSendForm ( url )
{
	var popup = window.open( url, 'sendform', 'left=100, top=100, width=400, height=550, scrollbars=no, location=no, toolbar=no, status=yes' );
}


function showGalleryColumns ()
{
	if ( document.getElementById("loadIcon") )
	{
		 document.getElementById("loadIcon").style.display = "none";
	}

	for ( var i=1; i<6; i++ )
	{
		if ( document.getElementById( 'column' + i ) )
		{
			document.getElementById( 'column' + i ).style.display = "block";
		}
	}
}


// Flash-Embed for IE
function embedFlash( oTag )
{
	document.write( oTag );
}