<!--
//Marcos Rojas - Alfamultimedia 2000
function abrir(formulario){

if (document.layers){
var indice=formulario.provincia.selectedIndex-1;
//document.location.hash=indice;
alto=document.anchors[indice].y;
window.scrollTo(0,alto-10);
}

if (document.all){
var indice=formulario.provincia.selectedIndex+1;
document.location.hash="#"+indice;
//alto=document.anchors[indice].style.y;
//alert(alto);
//window.scrollTo(0,alto);
}

}
//fin de codigo-->

