// JavaScript Document

/* Borde alrededor de los input*/
function foco(elemento) {
elemento.style.border = "1px solid #339933";
}

function no_foco(elemento) {
elemento.style.border = "1px solid #CCCCCC";
}

function boton_hover() {
document.getElementById("enviar").className = "enviar_lista_de_correo_hover";
}

function boton_estado_inicial() {
document.getElementById("enviar").className = "enviar_lista_de_correo";
}

function boton_hover_comprar() {
document.getElementById("boton_comprar").className = "boton_hover";
}

function boton_estado_inicial_comprar() {
document.getElementById("boton_comprar").className = "boton";
}

function boton_actualizar_hover() {
document.getElementById("boton_actualizar").className = "boton_actualizar_hover";
}

function boton_actualizar_estado_inicial() {
document.getElementById("boton_actualizar").className = "boton_actualizar";
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function ShowReg(op) {
document.getElementById('retiro').style.display='none';
document.getElementById('mensajeria').style.display='none';
document.getElementById('encomienda_cordoba').style.display='none';
document.getElementById('encomienda__resto_del_pais').style.display='none';
document.getElementById('gastos_de_envio_0').style.display='none';
document.getElementById('gastos_de_envio_1').style.display='none';
document.getElementById('gastos_de_envio_2').style.display='none';
document.getElementById('gastos_de_envio_3').style.display='none';
document.getElementById('gastos_de_envio_4').style.display='none';


if (op == 1) {document.getElementById('retiro').style.display="block";
			  document.getElementById('gastos_de_envio_1').style.display="block";}
if (op == 2) {document.getElementById('mensajeria').style.display="block";
			  document.getElementById('gastos_de_envio_2').style.display="block";}
if (op == 3) {document.getElementById('encomienda_cordoba').style.display="block";
			  document.getElementById('gastos_de_envio_3').style.display="block";}
if (op == 4) {document.getElementById('encomienda__resto_del_pais').style.display="block";
			  document.getElementById('gastos_de_envio_4').style.display="block";}
}
