// funcao anterior/próximo da pop up de fotos.
total = 24;
function vai(onde)
{
	atual = img.src;
	atual = atual.substring(atual.indexOf(0)+1);
	atual = parseInt(atual);
	if(onde > 0 && atual < total)
	{
		atual++;
	}else if(onde > 0 && atual >= total)
	{
		atual = 1;
	}else if(onde < 0 && atual > 1)
	{
		atual--;
	}else if(onde < 0 && atual <= 1)
	{
		atual = total;
	}
	img.src = "images/fgfoto0"+atual+".jpg";
}

//pop-up fotos pré estréia
function pop_fotos()
{
	window.open('../fotos.htm','evhomem','width=497,height=500,top=10,location=no,resize=no,status=no');
}

//pop-up fotos do filme
function pop_img(tit,foto)
{
	html = '<html><head><title>Mais Uma Vez Amor</title></head><body  bgproperties="fixed" bgcolor="000000" leftmargin="0" topmargin="0" marginwidth="0">';
	html += '<table border="0" cellpadding="0" cellspacing="0"><tr><td colspan="2">';
	html += '<img src="'+tit+'" width="491" height="40" alt="Fotos"><br><br></td></tr><tr><td colspan="2">';
	html += '<img src="'+foto+'" width="497" height="335" alt="" border="0">';
	html += '</td></tr></table></body></html>'
	jan = window.open('','','width=497,height=425,top=10,location=no,resize=no,status=no');
	jan.document.write(html);
	jan.focus();
}
