function CreateProductWidget() 
{
    var strUrl = "http://www.sydneybookings.com.au/GetData/GetProductWidget.aspx?Reference=";
    var Reference=document.getElementById('hdnProductReference').value;
    var ProductBackColor= "";
    if(document.getElementById('hdnProductBackColor')!=undefined)
    {
        ProductBackColor = document.getElementById('hdnProductBackColor').value;
    }
    ProductBackColor = ProductBackColor.replace("#","");
    
    strUrl = strUrl + Reference + "&ST="+ProductBackColor;
    
    var ifrm = document.createElement("IFRAME");
    ifrm.setAttribute("src", strUrl);
    ifrm.setAttribute("id", "frmProductWidget");
    ifrm.setAttribute("name", "frmProductWidget");
    ifrm.style.width = 495+"px";
    ifrm.style.height = 435+"px";
    ifrm.style.border = "1px";
    ifrm.scrolling = "no";
    ifrm.frameBorder = "0";
    ifrm.frameSpacing = "0";
    document.getElementById('dvProductWidget').appendChild(ifrm);
}
CreateProductWidget();