function capaBlanca(){
	fondoBlanco=new DynLayer(null,0,0,1024,2000,'#ffffff')
	DynAPI.document.addChild(fondoBlanco)
	window.focus();
}
//Ejemplo de uso
//<a href="../seguirLeyendo.html" onclick='javascript:abreVentana(this.href, "resizable=yes,scrollbars=yes,width=330,height=200,toolbar=no,status=no");return false;' >Seguir leyendo</a>
var ventana=null;
function abreVentana( url, params ){
	var etiq
	etiq=String( Math.ceil( Math.random() * 100000 ) );
	ventana=window.open( url, etiq, params )
	ventana.focus();
}

function enlace( url, texto )
{
	return "<a href=\"http://" + url + "\" onclick='javascript:abreVentana(this.href, \"\");return false;' class=\"textoLink\">" + texto + "</a>";
}
