function embeddedProductDomainSelection(productDomain,layoutId)
{
    // Set path to the iframe file
    var randomnumber=Math.floor(Math.random()*50001);
    var filePath = 'http://www.gotimekeeper.com/metaforce/Embed_ProductDomain_SelectionQuery.do?productDomainId='+productDomain+'&layoutId='+layoutId;
    //var filePath = 'http://localhost:8080/metaforce/Embed_ProductDomain_SelectionQuery.do?productDomainId='+productDomain+'&layoutId='+layoutId;
    var iframe='<iframe id="Iframe'+randomnumber+'" width="95%" height="100%" marginheight="0" marginwidth="0" src="#" frameborder="no" horizontalscrolling="no" allowtransparency="true"></iframe>';
    document.write(iframe);

    var myIframe = parent.document.getElementById("Iframe"+randomnumber);
    var iframeWidth = myIframe.clientWidth - 2;

    var iheight = 600;
    if (layoutId == 2)
    {
        iheight = 200;
    }

    myIframe.height = iheight;
    myIframe.width = iframeWidth;

    myIframe.src = filePath;

    return true;
}


function embeddedBookingQuery(productDomain,layoutId)
{
    // Set path to the iframe file
    var randomnumber=Math.floor(Math.random()*50001);
    var filePath = 'http://www.gotimekeeper.com/metaforce/Embed_BookingQuery.do?productDomainId='+productDomain+'&layoutId='+layoutId;
    //var filePath = 'http://localhost:8080/metaforce/Embed_BookingQuery.do?productDomainId='+productDomain+'&layoutId='+layoutId;
    var iframe='<iframe id="Iframe'+randomnumber+'" src="#" width="95%" height="100%" marginheight="0" marginwidth="0" frameborder="no" horizontalscrolling="no" allowtransparency="true"></iframe>';
    document.write(iframe);

    var myIframe = parent.document.getElementById("Iframe"+randomnumber);
    var iframeWidth = myIframe.clientWidth - 2;

    var iheight = 300;
    if (layoutId == 2)
    {
        iheight = 180;
    }

    myIframe.height = iheight;
    myIframe.width = iframeWidth;

    myIframe.src = filePath;

    return true;
}