// variables para la visualización de imágenes ampliadas
imagen = '';
tituloi = '';
extrasi = '';
anchoi = '';
altoi = '';

function abrir_img(im,ti,ex,ancho,alto){
	imagen=im;
	tituloi=ti;
	extrasi=ex;
	anchoi=ancho;
	altoi=alto;
	masAlto=alto+25;
	features = "width="+ancho+",height="+masAlto;	
	window.open("/ES/tienda/template/ver_imagen.htm",ancho+alto,features);
}



function radio_button_checker(radio_form)
{
// set var radio_choice to false
var radio_choice = false;

// Loop from zero to the one minus the number of radio button selections
for (counter = 0; counter < radio_form.envio_pago.length; counter++)
{
// If a radio button has been selected it will return true
// (If not it will return false)
if (radio_form.envio_pago[counter].checked)
radio_choice = true; 
}

if (!radio_choice)
{
// If there were no selections made display an alert box 
 alert('Por favor, seleccione Tipo de Envio y Forma Pago. Despues, pulse el boton COMPRAR');  
 return (false);
}
}

//-->