/*
  Copyright 2009 Stanziq, Inc.
  Bootstrap the widget iFrame
*/

/*global CollectaWidget */
    
(function(){

if(CollectaWidget !== undefined)
{
    CollectaWidget.location = document.location.href;
    if(CollectaWidget.width === undefined)
    {
        CollectaWidget.width = "100%";
    }
    if(CollectaWidget.height === undefined)
    {
        CollectaWidget.height = "300px";
    }
    var path = CollectaWidget.path + "&location=" + CollectaWidget.location;

document.write("<ifr"+"ame style='border:none;width:"+CollectaWidget.width+"; height:" + 
               CollectaWidget.height+";overflow:hidden;' src='"+path + 
               "' id='widgetframe' frameborder='0' scrolling='no'></ifr"+"ame>");
}

})();