// a funo da Azeitona

<!-- Esconde o javascript de clientes mais antigos

function sf() {
	document.az.form_nome.focus();
}

function popup(url, site, width, height) {
	// defines used variables
	var bars = "no";
	
	// gets if we're showing video or a sinopse
	switch(site) {
		case 'trailer' : var bars = "no"; break;
		case 'sinopse' : var bars = "yes"; break;
	}
	
	var w = 1024, h = 768; // valores padrao caso alguma coisa corra mal
	w = screen.availWidth;
	h = screen.availHeight;
	var popW = width, popH = height;	
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	
	window.open(url,site,'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',status=yes,toolbar=no,location=no,menubar=no,directories=no,resizable=yes,scrollbars='+bars+'');

}

-->