function win1(html)
{
  var win = new Window({id: "win1", className: "alphacube", title: "", width:886, height:100, parent:$('why') }); 
  win.getContent().innerHTML = "<p class=\"small\">i2i television are a TV production company, responsible for the production of The Daily Telegraph Home Building and Renovating Awards, The House That Macintosh Built, Barn Free, How To Build a House, Elizabethan House and now Building the Ultimate House TV series'. We not only celebrate the achievements of architects and builders in creating incredible houses but also offer our design expertise to help bring innovative ideas to fruition. Architecture is a passion rather than profession for the company but a perfect illustration of how experienced, creative designers can contribute across the design spectrum. Please contribute and <a href=\"/contact.php\" class=\"fade\">contact us</a> if you would like your projects to be featured here.</p>"; 

  win.setDestroyOnClose();
  win.show(); 
  win.setConstraint(true, {left:0, right:0})
  win.toFront();
}