// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function comprar(l){

if (Number(document.getElementById('uds'+l).value) < Number(document.getElementById('pedidominimo'+l).value)) {
		alert ("El pedido minimo es " + document.getElementById('pedidominimo'+l).value);
} else {
	var direccion="add.php?id=" + document.getElementById('idstock'+l).value + "&uds=" + document.getElementById('uds'+l).value;

	if(document.getElementById('idstock'+l).value!=""){
		MM_openBrWindow(direccion,'Carrito','width=640,height=500')
	}
}
}

function abrecarri(x, p, c){
// ABRE LA FICHA
	var istck=document.forms["form"+x]["idstock"+x].value
	var unidadessend=document.forms["form"+x]["uds"+x].value
	window.location="ficha.php?id="+p+"&cat="+c+"&ids="+istck+"&uds="+unidadessend +"";
}