var sobre=0;
var varCapa;
var ant;
var timeOut;
var delayTime = 600;

function actualiza(orden,sentido){
	document.getElementById('orden').value = orden;
	document.getElementById('sentido').value = sentido;
	document.getElementById('frm_actualiza').submit();
}


function seguro(){
var ok = confirm("El artículo ya lo has vendido o lo quieres borrar?");
	if(ok==true){
		return true
	}else{
		return false
	}
}

function ordena(valor){

	if(valor=='precio_asc'){
		valor = 'precio';
		direccion = "asc";
	}else if(valor=='precio_desc'){
		valor = 'precio';
		direccion = "desc";
	}else if(valor=='fecha_alta'){
		valor = 'fecha_alta';
		direccion = "asc";
	}

	document.getElementById('ord_valor').value = valor;
	document.getElementById('ord_direccion').value = direccion;
	document.getElementById('frm_ordena').submit();

}

function muestraTipo(valor){

	document.getElementById('listado_tipo').value = valor;
	document.getElementById('frm_muestra').submit();

}

function anadirfav(url,nombre){
//Para internet explorer
if ((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)) {
var url=url; //Cambia esta dirección por la de tu web
var titulo=nombre; //Cambia esta nombre por el de tu web
window.external.AddFavorite(url,titulo);
}
//Para Netscape y Firefox
else {
if(navigator.appName == "Netscape")
alert ("Presione Crtl+D para agregar a este sitio en sus Bookmarks");  //Puedes personalizar este mensaje
}
}