
function replaceAll( str, from, to ) {
    var idx = str.indexOf( from );


    while ( idx > -1 ) {
        str = str.replace( from, to ); 
        idx = str.indexOf( from );
    }

    return str;
}

function show_banner(id,option,type,colort,colorf,colorm)
	{
		document.write('<script type="text/javascript" src="http://www.cloverad.com/publish/code.js"><\/script>');
	}

function show_banner2(id,option,type,colort,colorf,colorm)
	{
		var u="http://www.e-propgroup.com/af/publish.php?id="+id;
		var d=document;
		var aleatorio = Math.random()*10000;
		aleatorio = Math.round(aleatorio);
		//obtencion del tamaņo
		ancho = option.substring(0,3);
		alto = option.substring(4,7);
		if (colort == "")
			{
				//color por defecto el azul oscuro
				colort = "#000099";
			}
		if (colorf == "")
			{
				//color por defecto el blanco
				colorf = "#FFFFFF";
			}
		if (colorm == "")
			{
				//color por defecto el azul oscuro
				colorm = "#000066";
			}
		//encode para las direcciones url
		
		colort = replaceAll(colort,"#","%23");
		colorf = replaceAll(colorf,"#","%23");
		colorm = replaceAll(colorm,"#","%23");
		if (type == "all")
			{
				modo = Math.round(Math.random());
				if (modo == 0)
					{
						type = "graphic";
					}
				else
					{
						type = "text";
					}
			}
		if (type == "graphic")
			{
			d.write('<a target=_blank href="http://www.e-propgroup.com/af/publish.php?id='+id+'&session='+aleatorio+'"><img src="http://www.e-propgroup.com/af/ipublish.php?id='+id+'&option='+option+'&type='+type+'&session='+aleatorio+'" border=0></a>');
			}
		if (type == "text")
			{
			d.write('<iframe name="eprop_frame" width='+ancho+' height='+alto+' frameborder=0 src="http://www.e-propgroup.com/af/ipublish.php?id='+id+'&option='+option+'&type='+type+'&session='+aleatorio+'&colort='+colort+'&colorf='+colorf+'&colorm='+colorm+'" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no"></iframe>');
			}
		//eprop_banner(id,options,type);
	}
