function rodaFlash(largura,altura,id,caminho){
texto = '<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="' + largura + '" height="' + altura + '">';
texto +='  <param name="movie" value="' + caminho + '">';
texto +='  <param name="quality" value="high">';
texto +='  <param name="wmode" value="transparent" />';
texto +='  <embed src="' + caminho + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + largura + '" height="' + altura + '" wmode="transparent"></embed>';
texto +='</object>';
document.getElementById(id).innerHTML = texto;
}

function mudaVideo(url){
	document.getElementById(id).innerHTML = url;
}

legenda = new Array(15);
legenda[0] = "Esta é a foto zero!";
legenda[1] = "Esta é a foto um!";
legenda[2] = "Esta é a foto dois!";
legenda[3] = "Esta é a foto tres!";
legenda[4] = "Esta é a foto quatro!";
legenda[5] = "Esta é a foto cinco!";
legenda[6] = "Esta é a foto seis!";
legenda[7] = "Esta é a foto sete!";
legenda[8] = "Esta é a foto oito!";
legenda[9] = "Esta é a foto nove!";
legenda[10] = "Esta é a foto dez!";
legenda[11] = "Esta é a foto onze!";
legenda[12] = "Esta é a foto doze!";
legenda[13] = "Esta é a foto treze!";
legenda[14] = "Esta é a foto catorze!";

function mudafoto(valor){
	texto = "<img src='album/foto (" + valor +").jpg' />";
	legen = legenda[valor];
	document.getElementById('fotogrande').innerHTML = texto;
	document.getElementById('legendas').innerHTML = '<img src="imagens/marca_legenda.gif" align="absmiddle" /> ' + legen;
}

function popup(URL,parametro) {

var width = 450;
var height = 327;

var left = 99;
var top = 99;

window.open(URL,parametro, 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}