function popup(url, larg, alt, nome, sc) {
	if (nome=='') {
		nome = num++;
	}	
	x = (screen.width-larg)/2;
	y = (screen.height-alt)/2;		
	window.open(url, nome, "top="+y+", left="+x+", width="+larg+", height="+alt+", resizable=0, scrollbars="+sc+", status=1, location=0, menubar=0");
}

function foto(pasta, pagina, imagem) {
	popup('foto.php?pg='+pagina+'&img='+imagem, 50, 50, 'amp'); 
}

function flash(arquivo, larg, alt, bg, id) {

	bgColorType = (bg != "transparent") ? "<param name=\"bgcolor\" value=\""+bg+"\" />" : "<param name=\"wmode\" value=\"transparent\" />"; 
	bgColorType2 = (bg != "transparent") ? " bgcolor=\""+bg+"\" " : " wmode=\"transparent\" ";

	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=\""+larg+"\" height=\""+alt+"\" id=\""+id+"\" align=\"middle\">");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
	document.write("<param name=\"movie\" value=\""+arquivo+"\" />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write(bgColorType);
	document.write("<param name=\"showmenu\" value=\"false\" />");
	document.write("<embed src=\""+arquivo+"\" showmenu=\"false\" "+bgColorType2+" quality=\"high\" width=\""+larg+"\" height=\""+alt+"\" name=\""+id+"\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
	document.write("</object>");
}