function RodarFlash(path,variaveis,_width,_height){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+_width+'" height="'+_height+'">')
		document.write('<param name="movie" value="'+path+'?'+variaveis+'">')
		document.write('<param name="quality" value="high">')
		document.write('<param name="wmode" value="transparent">')
		document.write('<embed src="'+path+'?'+variaveis+'" width="'+_width+'" height="'+_height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>')
	document.write('</object>')
}
function fecharAgenda(){
	document.getElementById("agenda").style.display = 'none';
}
function abrirAgenda(){
	document.getElementById("agenda").style.display = 'block';
}

/*function VerificarForm()
{
	for( i=0; i<document.frm.length; i++ )
	{
		if( document.frm[i].value == "" && document.getElementById("msg_" + document.frm[i].name) )
		{
			alert(document.getElementById("msg_" + document.frm[i].name).innerHTML);
			document.frm[i].focus();
			return false;
		} else if( document.frm[i].name.indexOf("Email") > 0 && !isEmail(document.frm[i].value) && document.getElementById("msg_email_" + document.frm[i].name) ) {
			alert(document.getElementById("msg_email_" + document.frm[i].name).innerHTML);
			document.frm[i].select();
			return false;
		}
		
	}	
}*/
