// JavaScript Document

var seleccionado=false;

function ponVisi(cual) {
//Desactivamos todas las provincias
if (!seleccionado)
{
	for (var cont=1; cont<=52; cont++) 
           document.getElementById("prov_"+cont).style.visibility="hidden";
	document.getElementById("prov_"+cual).style.visibility="visible";
}

}

function seleccionaProvincia(cual)
{
   seleccionado=true;
   for (var cont=1; cont<=52; cont++){
       document.getElementById("prov_"+cont).style.visibility="hidden";
   }
       document.getElementById("prov_"+cual).style.visibility="visible";
       document.formularioServicios.provincia.value=cual;    
}


function desactivarProvincias()
{
    for (var cont=1; cont<=52; cont++) 
           document.getElementById("prov_"+cont).style.visibility="hidden";
    seleccionado=false; 
}



function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}