// JavaScript Document

function popup(arquivo, largura, altura) {
	window.open("popup_fotos.php?arquivo="+arquivo,"popup","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,menubar=no,width="+largura+",height="+altura);
}

function popHome(url,title,w,h) {
	var top = (screen.height)?(screen.height-h)/2:0;
	var left = (screen.width)?(screen.width-w)/2:0;
	settings = "width="+w+", height="+h+", top="+top+", left="+left+", resizable=no, menubar=no, scrollbars=no, statusbar=no";
	window.open(url,title,settings);
}

function closeDhtml(id) {
	document.getElementById(id).style.display = "none";
}

function carrega(a){
	window.location = a;
}