var menu_actual = "";

function expand(taula){
    //if (menu_actual) document.getElementById(menu_actual).style.display = "none";
    document.getElementById(taula).style.display = "block";
    menu_actual = taula;
} 
function view_video(){
	showPopWin('', $('#videoframe').width(), $('#videoframe').height(), '', true, '', '', false, $('#videoframe').html());
	
	nW = $('#videoframe').width()+2;
	nH = $('#videoframe').height();	
	
	sContent = '<div class="modalBox"><div class="modalCloseImg"><a class="modalCloseImg" title="'+MODALBOX_CLOSE+'" onclick="hidePopWin(false);">'+MODALBOX_CLOSE+'</a></div>' + $('#videoframe').html() + '</div>';
	
	nFadeIn=500;
	$.blockUI.defaults.fadeOut = 200;
	
	$.blockUI({
		message: sContent,
		fadeIn: nFadeIn,
		css: {
			top:  ($(window).height() - nH) /2 + 'px',
			left: ($(window).width() - nW) /2 + 'px',
			padding: '0',
			margin: '0',
			width:nW + 'px',
			height:nH + 'px',
			border:	'none',
			backgroundColor:"#fff"
		},
		overlayCSS:  {
				backgroundColor: '#000',
				opacity:         0.6,
				cursor: 'default'
			}

	});
	
}

function close_viewer(){		
	$('div.blockMsg').hide()
	$.unblockUI();
}

