    var _ADDIPLY_SERVER = 'www.addiply.com/';
    
    function addiply_media(adtype, p1, p2, p3)
    {
      if(adtype==1){
        //Text Ads
        isvertical=p1;
        inventory=p2;
        count = p3;
        addiply_renderText(isvertical, inventory, count);
      } else if(adtype==2){
        //Banner Ads
        loc_id=p1;
        pheight=p2;
        pwidth = p3;
        addiply_renderImage(loc_id, pheight, pwidth);
      }
    }
  
    function addiply_renderText(isvertical, inventory, count)
    {	
      var singleheight=110, singlewidth=146, height=0, width=0;
      if(isvertical==1){
        height=count*singleheight+65; width=singlewidth+10;
      } else {
        height=singleheight+45; width=count*singlewidth;
      }
      document.write("<iframe height="+height+" width="+width+" frameborder=0 marginwidth=0 marginheight=0 vspace=0 hspace=0 scrolling=no src=\"http://"+_ADDIPLY_SERVER+"gettextads.php?i="+inventory+"&v="+isvertical+"\"></iframe>");
    }
  
    function addiply_renderImage(loc_id, pheight, pwidth)
    {      
      twa_server = _ADDIPLY_SERVER;
      twa_rn = '001234567890'; twa_rns = '1234567890';
      twa_rn = new String (Math.random()); twa_rns = twa_rn.substring (2, 11);
      document.write("<iframe height="+pheight+" width="+pwidth+" frameborder=0 marginwidth=0 marginheight=0 vspace=0 hspace=0 scrolling=no src=\"http://"+_ADDIPLY_SERVER+"renderimage.php?i=" + twa_rns + "&p="+loc_id+"\"></iframe>");
    } 

