
function showDiv(divID, strFlashName)
{

		//document.getElementById('transparent').style.display = 'block';
		document.getElementById(divID).style.display = 'block';
	
}


function hideDiv(divID)
{
	document.getElementById(divID).style.display = 'none';
	//document.getElementById('transparent').style.display = 'none';
}


function newWindow(strFlashName)
{
	//var srtUrl = 'video.php?file=' + strFlashName + '.swf';
	var srtUrl = 'video.php'; //Valor temporal solo para test
	window.open(srtUrl,'_blank','width=600, height=640, resizable=no, scrollbars=no, directories=no, location=no , menubar=no, status=no, titlebar=no, toolbar=no')
}


function goUrl(srtUrl)
{
	window.open(srtUrl, '_blank', 'width=1024, height=768, resizable=yes, scrollbars=yes');
}


