function flash(flash, w, h, label){
	
if (AC_FL_RunContent == 0) {
	alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
	} else {
		AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0',
		'width', w,
		'height', h,
		'src', 'flash/'+flash,
		'quality', 'high',
		'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'noscale',
		'wmode', 'transparent',
		'devicefont', 'false',
		'id', flash,
		'name', flash,
		'menu', 'true',
		'allowScriptAccess','sameDomain',
		'movie', 'flash/'+flash,
		'salign', 't',
		'flashvars' ,'sessao_atual='+label
		); 
	}
}


function validaNews(nome,email){
	nome 	= document.newsletter.name.value;
	email 	= document.newsletter.email.value;		
		if (nome == '' || email == ''){
			alert('Preencha seu Nome e E-mail corretamente!');
			return false;
		}else{
		window.open ('cadastra_email.asp?nome='+nome+"&email="+email, 'NewsLetter', 'status=no, width=250, height=150, scrollbars=no, no-resize, top=200, left=300');					
	}			
}

