function carga_url (URL,capa) {
	$(document.getElementById(capa)).html('');
	  $(document.getElementById(capa)).load(URL,function(){
		$(document.getElementById(capa)).slideDown("slow");
	  });
}

function msg_change (capa,htmltext) {
	$(document.getElementById(capa)).html(htmltext);
}

function displayCapa (capa,status) {	
	if (status!=undefined && status!='') {
		document.getElementById(capa).style.display=status;
	} else {
		if (document.getElementById(capa).style.display=="block") {
			document.getElementById(capa).style.display="none";
		} else {
			document.getElementById(capa).style.display="block";
		}
	}
}

function productFamilyOpen (cod) {
	var capa='categoria'+cod;
	var flecha='flecha'+cod;
	var status=document.getElementById(capa).style.display;
	if (status=='block') {
		display_capas2 (capa,'none');
		document[flecha].src="../skins/2007/imagenes/buttonarrow.gif";
	} else {
		carga_url('producto.php?c='+cod+'',capa);	
	}
}
