// --------------------------------------------------------
// CTB :: pinta_ofertas.js
// --------------------------------------------------------

// metodo
function pintaProductoGrande()
{
  document.write ('<div class="centrar_caja" style="margin-left:25px">');
  document.write (' <div class="caja" style="width: 556px; background-image: url(/WebRoot/Store/Shops/Store_002E_BonsaiAdvanced/MediaGallery/centro_producto.jpg); background-repeat: repeat-y;">');
  document.write ('  <div class="cajaarriba" style="background-image: url(/WebRoot/Store/Shops/Store_002E_BonsaiAdvanced/MediaGallery/arriba_producto.jpg); background-position: top center; background-repeat: no-repeat;"> ');
  document.write ('    <div class="cajaabajo" style="background-image: url(/WebRoot/Store/Shops/Store_002E_BonsaiAdvanced/MediaGallery/abajo_producto.jpg); background-position: bottom left; background-repeat: no-repeat; padding: 9px 15px 15px 15px;">');
  document.write ('      <h1 style="color:#002b7f; font-size:12px;padding-left:10px;"><a href="' + this.URL_ProductView + '" target="' + this.target+'">' + this.prodName + '</a></h1>');
if(this.prodFlash) {
  document.write ('<table cellpadding="0" cellspacing="0" style="width:100%;"><tr><td><a href="' + this.URL_ProductView +'" target="' + this.target+'"><img src="/WebRoot/Store/Shops/Store_002E_BonsaiAdvanced/MediaGallery/boton_producto.jpg" border="0" align="right"/></a><br /></td></tr></table>');
  } else if (this.prodImage) {
  document.write ('<table cellpadding="0" cellspacing="0" style="width:100%; padding-top:5px; margin-top:5px;"><tr><td rowspan="2" style="width:120px;font-size:90%;padding-left:15px;text-align:center;"><a href="' + this.URL_ProductView +  '" target="' + this.target+'"><img src="' + this.prodImage + '" border="0" /></a></td><td style="text-align:right;vertical-align:top;color:#002b7f; font-size:12px;"><p style="width:320px;text-align:right;padding-right:15px;font-size:95%;color:#002b7f;font-weight:normal;">' + this.prodDesc + '</p></td></tr><tr><td ><a href="' + this.URL_ProductView +  '" target="' + this.target+'"><img src="/WebRoot/Store/Shops/Store_002E_BonsaiAdvanced/MediaGallery/boton_producto_' + this.prodIdioma + '.jpg" border="0" align="right"/></a><br /></td></tr></table>');
  }
  document.write ('    </div>');
  document.write ('  </div>');
  document.write (' </div>');
  document.write ('</div>');
}


// constructor
function productoHome (id,name,description,image,idioma)
{
 var iPos = document.location.href.indexOf( document.location.search );
 this.rootSite = (iPos != -1 )? document.location.href.substring( 0, iPos ):document.location.href;
 this.prodID = id;
 this.prodName = name;
 this.prodDesc = description;
 this.prodImage = image;
 this.prodIdioma = idioma;
 this.target = "_top";

 this.URL_ProductView = this.rootSite + "?ObjectPath=/Shops/Store.BonsaiAdvanced/Products/" + id;

 this.pintaProductoGrande = pintaProductoGrande;
}

function productoHomeExt (id,name,description,image,idioma)
{
 var iPos = document.location.href.indexOf( document.location.search );
 this.rootSite = (iPos != -1 )? document.location.href.substring( 0, iPos ):document.location.href;
 this.prodID = id;
 this.prodName = name;
 this.prodDesc = description;
 this.prodImage = image;
 this.prodIdioma = idioma;
 this.target = "blank";

 this.URL_ProductView =  id;

 this.pintaProductoGrande = pintaProductoGrande;
}
