function enlarge( img_name )
{
    $("#item_confirm_img").html('<img src="/img/'+img_name+'.jpg" style="border:0; max-width:150px; max-height:100px;">');
    $("#item_confirm_bg1").show();
    $("#item_confirm").fadeIn('fast');
    
}
function onItemClose()
{
    $("#item_confirm").fadeOut('fast');
    $("#item_confirm_bg1").hide();  
}

function goto_page( url )
{
    location.href = url;
}


function show(id)
{
	if (document.getElementById('menu'+id).style.display == 'block') {
		document.getElementById('menu'+id).style.display = 'none';
		return;
	}

	document.getElementById('menu'+id).style.display = 'block';
}

function clearField()
{
    document.getElementById('newsletter-input').value='';
}



function doSubmit(val)
{
	document.getElementById('nstan').value = val;
	document.getElementById('nform').submit(); 
}

function show_multimedia(id)
{    
	hide_multimedia();
    
	show_movie(id);
	//$('#overlay_movie2').fadeIn();
	//$('#overlay_movie_bg').fadeIn();
}
function hide_multimedia()
{
     $('#overlay_movie').fadeOut();
}

function show_movie(id)
{
		
	$('#multi_top_title2').html(ARR_MOVIE[id]['title']);
	$('#multi_top_desc').html(ARR_MOVIE[id]['desc']);	

	create_movie3(ARR_MOVIE[id]['embed']);

	$('#overlay_movie2').fadeIn();
  $('#overlay_movie_bg').fadeIn();
}


function create_movie3(file)
{
  var so = new SWFObject("/player_flv_maxi.swf", "swf", "480", "360", "8", "#000000");
		so.addParam("movie", "/player_flv_maxi.swf");
		so.addParam("allowFullScreen", "true");
		so.addParam("FlashVars", "flv="+file+"&title=Zobacz film&autoload=1&volume=75&bgcolor=6197CC&bgcolor1=6197CC&bgcolor2=6197CC&showstop=1&showvolume=1&showtime=1&showloading=always&playercolor=6197CC");
		so.write("gallery_result2");
}




function onMultiClose()
{

	$(".multimedia").fadeOut(10);
	$("#overlay_movie_bg").fadeOut(20);	
	create_movie3('');
}