function destacados(div)
{
var temp = $("#"+div).html();
temp = temp.replace('#MEJOR_PRECIO#','
');
temp = temp.replace('#LIQUIDACION#','');
temp = temp.replace('#PORTES_GRATIS#','');
temp = temp.replace('#NUEVO_STOCK#','');
$("#"+div).html(''+ temp +'');
}
function destacados2(div)
{
var temp = $("#"+div).html();
temp = temp.replace('#MEJOR_PRECIO#','');
temp = temp.replace('#LIQUIDACION#','');
temp = temp.replace('#PORTES_GRATIS#','');
temp = temp.replace('#NUEVO_STOCK#','');
$("#"+div).html(''+ temp +'');
}
function destacados3(div)
{
var temp = $("#"+div).html();
temp = temp.replace('#MEJOR_PRECIO#','');
temp = temp.replace('#LIQUIDACION#','');
temp = temp.replace('#PORTES_GRATIS#','');
temp = temp.replace('#NUEVO_STOCK#','');
$("#"+div).html(''+ temp +'');
}
function cargar_marca(valor_marca,valor_categoria)
{
var url_marcas= "products.php?category_id=" + valor_categoria + "&manf=" + valor_marca;
if (navigator.appName=="Netscape"){
location.href= url_marcas;
}
if (navigator.appName=="Microsoft Internet Explorer"){
location.href= url_marcas;
}
}