var vizibil= "";

function confirmare(var_b,var_c)
{

	if(confirm('SIGUR IL STERGI, FAH?')) top.location = "http://www.schimburi.ro/index.php?a=99&b=" + var_b + "&c=" + var_c;
}

function arata(divid){
vizibil = "da";
helpdiv = ''+divid+'';
setTimeout("toggleDiv(helpdiv,1)",300);
}

function toggleDiv(id,flagit) {
if (flagit=="1"){
if (vizibil=="da")
{
if (document.layers) document.layers[''+id+''].visibility = "show"
else if (document.all) document.all[''+id+''].style.visibility = "visible"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
}
}
else
if (flagit=="0"){
vizibil = "nu";
if (document.layers) document.layers[''+id+''].visibility = "hide"
else if (document.all) document.all[''+id+''].style.visibility = "hidden"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
}
}


