
//console.log('widget sctipt loaded');
function initBillyWiget(elementId) {

var iframe = document.createElement('iframe');
iframe.onload = function () {
if (typeof iframeLoadedCallback === 'function') {
iframeLoadedCallback();
}
};
iframe.src = '//www.billy.com/widget/WidgetWizard?token=F7C6EA35&categoryId=3&uuid=736879c2-c000-4101-957f-7f3964191d5f';
iframe.frameborder = "0";
var iframeStyle = "border: none;";
iframe.scrolling = "no"; //DO NOT TURN ON SCROLLING - CAUSE IOS IFRAME PROBLEM
if ( 320 <= 0 ) {
iframeStyle += " width: 1px; min-width: 100%;"; //ios iframe responsive fix
} else {
iframe.width = 320 ;
}
if ( 420 <= 0 ) {
iframeStyle += " height: 1px; min-height: 100%;"; //ios iframe responsive fix
} else {
iframe.height = 420;
}
iframe.style = iframeStyle;

document.getElementById(elementId).appendChild(iframe);
}
initBillyWiget('billy-widget');
