 script_tags = document.getElementsByTagName("script");
 params = script_tags[script_tags.length-1].src.split("#");  
 frame_width=210;
 frame_height=250;  
 src_name=''
 try {
    url_parts = params[1].split(",");
    src_name=url_parts[0];
    frame_width=url_parts[1];
    frame_height=url_parts[2];
    url_base=url_parts[3];
    url='http://'+url_base +'/widgets/'+url_parts[4].split("?")[0];        
    ifrm = document.createElement("IFRAME");
    ifrm.setAttribute("frameborder" , "0");
    ifrm.setAttribute("style" , "border:0px solid #000000;");
    ifrm.setAttribute("src", url); 
    ifrm.style.width = frame_width+"px";
    ifrm.style.height = frame_height+"px";
    p2 = document.getElementById(src_name);
    p2.parentNode.replaceChild(ifrm,p2);    
  } catch(err)  {     
    the_div = document.createElement("DIV");
    the_div.innerHTML="<a href='http://www.plataformavoluntariado.org/'>http://www.plataformavoluntariado.org</a>";
    p2 = document.getElementById(src_name);   
    p2.parentNode.replaceChild(the_div,p2);
  }
 
 