
function AlternarVisibilidad( Seccion ){
       var elemento = document.getElementById( Seccion );

       if (elemento.style.display=="none"){
               elemento.style.display=""
       }else{
               elemento.style.display="none"
       }
}

function SubmitForm( FormName ){
	FormName.submit();
}


function OpenWindow( ){
	
}

