function foto(url, w, h) {
	comandos = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+w+",height="+h+""
	window.open(url, "", comandos)
	}
	
function popup(url, w, h) {
	comandos = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+w+",height="+h+""
	window.open(url, "", comandos)
	}

	
function Album(id, nome){
	comandos = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=625,height=370";
	window.open("album/album.php?id="+id, "", comandos);
	}
	

function Abre(objeto){

	if (document.getElementById(objeto).style.display == "block"){
		document.getElementById(objeto).style.display = "none";
		}
		
	else {document.getElementById(objeto).style.display = "block";}
	
	}