// JavaScript Document

function flash(flash,l,h){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ l +'" height="'+h+'">');
	document.write('<param name="movie" value="'+flash+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<embed src="'+flash+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+l+'" height="'+h+'" wmode="transparent"></embed>');
	document.write('</object>');
}

function mostra(status){
		
		if(status == 2){
		  document.getElementById("lblDataIni").style.display = 'inline';
		  document.getElementById("lblDataFim").style.display = 'inline';
		  document.getElementById("cDataInicial").style.display = 'inline';
		  document.getElementById("cDataFinal").style.display = 'inline';		  
		}
		else {
		  document.getElementById("lblDataIni").style.display = 'none';
		  document.getElementById("lblDataFim").style.display = 'none';
		  document.getElementById("cDataInicial").style.display = 'none';
		  document.getElementById("cDataFinal").style.display = 'none';		  
		}
}
