<!--
	function showPopUp(id1)
	{
		jQuery('#video').hide();
		document.getElementById(id1).style.display = "block"; 
	} 
	function hidePopUp(id)
	{
		document.getElementById(id).style.display = "none"; 
	}
	
	function popUp(url) {
		jQuery('#video').hide();
		jQuery('#pop-up').load(url, function(){
			jQuery('#pop-up').show();
		});
	}
	
	function closePopUp() {
		jQuery('#video').hide();
		jQuery('#pop-up').hide();
		
		return false;
	}

	function avaaVideo(nro) {
		jQuery('#pop-up').hide();
		jQuery('#video').show();
    	$('#video div').removeClass('show');
    	$('#video div#video'+nro).addClass('show');
	}

//-->

