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,colort,colorf,colorm,page)
	{
		var u="http://www.cloverad.com/publish/publish.php?id="+id;
		var d=document;
		//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");
		
		//d.write('<table width="728" border="0" cellpadding="0" cellspacing="0"><tr><td width="355" height="20" valign="top"><a href="http://www.miclasificado.com.ar">Necesitas visitas? Ingresa tu sitio en el directorio ahora. </a></td><td width="186" valign="top"><a href="http://www.miclasificado.com.ar/Autos">Ver info sobre autos</a>  </td><td width="187" valign="top"><a href="http://www.miclasificado.com.ar/Inmobiliaria">Ver info sobre inmobiliarias</a> </td></tr></table>');
		d.write('<iframe name="clover_frame" width='+ancho+' height='+alto+' frameborder=0 src="http://www.cloverad.com/publish/ipublish.php?page='+page+'&id='+id+'&option='+option+'&colort='+colort+'&colorf='+colorf+'&colorm='+colorm+'" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no"></iframe>');
		//eprop_banner(id,options,type);
	}

//Codigo a ejecutar
page = document.location+document.location.href;
show_banner(id,option,colort,colorf,colorm,page);