﻿window.show = function ( pElem )
{
	var szURL = pElem.getAttribute("url");
	var szTitle = pElem.innerHTML;
	if ( szURL != null )
	{
		window.open( GALLERY_PAGE + "?image=" + szURL + "&title=" + szTitle,
			GALLERY_NAME, "location=0,resizable=1,status=0,titlebar=0,toolbar=0,scrollbars=1" );
	}
};
