// JavaScript Document
function get(obj)
{
	return document.getElementById(obj);
}
function iValidaSenha(form)
{
if (form.passForm.value == "101010")

{
open("detalhes.htm")
form.passForm.value= ""
}
else
alert("Senha Incorreta")
return;
}

function resetLayers()
{
	get('div_foto').style.left = (parseInt(document.body.clientWidth/2))-parseInt(parseInt(get('div_foto').style.width)/2)+95;
	get('div_foto').style.top = 140; //(parseInt(document.body.clientHeight/2))-parseInt(parseInt(get('div_foto').style.height)/2)+document.body.scrollTop+145;
}
window.onscroll = resetLayers;
window.onresize = resetLayers;
function abre_div()
{
	get('div_foto').style.left = (parseInt(document.body.clientWidth/2))-parseInt(parseInt(get('div_foto').style.width)/2)+95;
	get('div_foto').style.top = 140;//(parseInt(document.body.clientHeight/2))-parseInt(parseInt(get('div_foto').style.height)/2)+document.body.scrollTop+145;
	get('div_foto').style.display  = '';
	get('div_1').style.display  = '';
	get('div_swf').style.display  = 'none';
	get('div_px').style.display  = '';
}
function fecha_div()
{
	get('div_px').style.display  = 'none';
	get('div_swf').style.display  = '';
	get('div_1').style.display  = 'none';
	get('div_foto').style.display  = 'none';
	get('div_foto').style.left = '-1220px';
	get('div_foto').style.top = '-1220px';
}