function capasarticulo(objname){

if (document.getElementById('ventajas')){
	document.getElementById('ventajas').style.display= 'none';
}
if (document.getElementById('descripcion'))
	document.getElementById('descripcion').style.display= 'none';

if (document.getElementById('condiciones'))
	document.getElementById('condiciones').style.display= 'none';

document.getElementById(objname).style.display= 'block';
/*if ((objname=='descripcion') && (document.getElementById('consulta')))
	document.getElementById('consulta').style.display= 'block';*/
}

function popup(src, pagina, ancho, alto, posx, posy) {
    v=window.open(src, pagina, 'resizable=no,scrollbars=yes,width='+ancho+',height='+alto+',top='+posy+',left='+posx);
    v.focus();
	return false;
}
