// JavaScript Document
function BlockUIRegolamento() {
	var str = "";
	str += "<img src='img/blockui_top.png' id='chiudiBlockUI'><div style='background:url(img/blockui_bgrepeat.png); width:488px; height:350px; overflow:hidden; text-align:left;'><div style='padding:10px; color:#000;'><div style='height:340px; overflow:auto;'>";
	str += $("#regolamento").html();
	str += "</div></div></div><img src='img/blockui_bottom.png'>";
	$.blockUI({ 
		message: str, 
		fadeIn: 500, 
		fadeOut: 500,
		centerY: true, 
		
		showOverlay: true, 
		overlayCSS: { 
			cursor: 'default',
			background: '#0097d6',
			opacity: '0.3'
		},
		
		css: { 
			width: '350px', 
			border: 'none', 
			backgroundColor: 'transparent', 
			color: '#fff' ,
			cursor: 'auto',
			fontSize: '13px',
			top: '50%',
			left: '50%',
			marginLeft: '-244px',
			marginTop: '-175px'
		} 
	}); 
	//$(".blockMsg img[src$=.png]").ifixpng();
	$.ifixpng('img/pixel.gif'); 
	$('.blockMsg img[src$=.png]').ifixpng();
	$("#chiudiBlockUI").css("cursor","pointer").click(function() { $.unblockUI(); });
}

function BlockUIZoom() {
	var str = "";
	str += "<img src='img/blockui_top.png' id='chiudiBlockUI'><div style='background:url(img/blockui_bgrepeat.png); width:488px; height:564px; overflow:hidden; text-align:center'>";
	str += "<img src='img/zoom.jpg'>";
	str += "</div><div id='text'></div><img src='img/blockui_bottom.png'>";
	$.blockUI({ 
		message: str, 
		fadeIn: 500, 
		fadeOut: 500,
		centerY: true, 
		
		showOverlay: true, 
		overlayCSS: { 
			cursor: 'default',
			background: '#0097d6',
			opacity: '0.3'
		},
		
		css: { 
			width: '350px', 
			border: 'none', 
			backgroundColor: 'transparent', 
			color: '#fff' ,
			cursor: 'auto',
			fontSize: '13px',
			top: '50%',
			left: '50%',
			marginLeft: '-244px',
			marginTop: '-282px'
		} 
	}); 
	$.ifixpng('img/pixel.gif'); 
	$('.blockMsg img[src$=.png]').ifixpng();
	$("#chiudiBlockUI").css("cursor","pointer").click(function() { $.unblockUI(); });
}
