function addCarro() {
var frm = document.forms[0];
var clink = '';

	if (isNaN(frm.txt_cantidad.value)) {
		alert('Debe ingresar sólo números');
		return;
	}
	if (frm.txt_cantidad.value < 1) {
		alert('La cantidad debe ser mayor a cero');
		return;
	}
	clink += 'addcarro.asp';
	clink += '?glb_cod_producto=' + addCarro.arguments[0];
	if (typeof(frm.cmb_talla) != 'undefined') {
		clink += '&glb_tal_producto=' + frm.cmb_talla.options[frm.cmb_talla.options.selectedIndex].value;
	}
	clink += '&glb_can_producto=' + frm.txt_cantidad.value;
	top.frame_carro.location = clink;
}
function LimpiaCantidad() {
var frm = document.forms[0];

	frm.action = top.location;
	frm.submit();
	//frm.txt_cantidad.value = '';
}
function vieCarro() {
var frm = document.forms[0];
	
	frm.action = 'vercarro.asp';
	frm.submit();
}
