function targetBlank(strUrl,intWidth,intHeight )
{
    var intTargetWidth = intWidth + 20;
    var intTargetHeight = intHeight + 20;
    blankWin = window.open(strUrl,'_blank','width=' + intTargetWidth + ',height=' + intTargetHeight + ',menubar=no,toolbar=no,location=no,directories=no,fullscreen=no,titlebar=yes,hotkeys=yes,status=no,scrollbars=yes,resizable=yes');
};

function showPhoto(intPosition,intSectionId)
{
    window.open('index.php?module=Gallery&action=GetPhoto&params=' + intSectionId + ',' + intPosition,'Photo','width=800,height=600,menubar=no,toolbar=no,location=no,directories=no,titlebar=yes,status=no,scrollbars=no,resizable=no,left=100,top=100');
};


/* ---- Top layer (Brandmark) oparty o jQuery ---- */
// funkcja chowajaca
function schowaj() {
	$('#brandmark').hide();
}

// wywoluje Brandmark
var Brendmark = {
	start : function() {
		$('#brandmark').flash(
			{ src: 'swf/brandmark.swf', width: 264, height: 384, wmode: 'transparent' }
		).show();
	}
}

// wywolaj po zaladowaniu dokumentu
$(document).ready(function() {
	Brendmark.start();
});