// JavaScript Document
var d = document;
function Get(par) {
	return d.getElementById(par);
}

function req_senha(){
	//alert('oi');
	var div_log = Get('log_former');
	div_log.style.display='none';
	//alert(div_log.display);
	var div_ree = Get('reenvio');
	div_ree.style.display='block';
	//alert(div_ree.display);
}

function turn(quem,par){
	Get(quem).value = par;
}

function splash_alert_x(alerta){
	Get(alerta).style.display='block';
	Get('fade').style.display='block';
}

function hid_splash_alert_x(alerta){
	Get(alerta).style.display='none';
	Get('fade').style.display='none';
}

function senha_canc(){
	//alert('oi');
	var div_log = Get('log_former');
	div_log.style.display='block';
	//alert(div_log.display);
	var div_ree = Get('reenvio');
	div_ree.style.display='none';
	//alert(div_ree.display);
}

function splash_alert_log(){
	Get('light').style.display='block';
	Get('fade').style.display='block';
}

function hid_splash_alert_log(){
	Get('light').style.display='none';
	Get('fade').style.display='none';
}

function direct_detail(){
	var hid_pag = Get("direct");
	hid_pag.value = "compra_detalhada.php";
}

function direct_art(){
	var hid_pag = Get("direct");
	hid_pag.value = "home.php";
}

 
