/*! * Copyright (C) 2010 DAQConnect Corporation All rights reserved worldwide. * * This software may only be used with the DAQConnect service and is subject to * the terms of the DAQConnect Corporation Subscription Agreement. * */ document.write(''); var DAQConnectLoader = { complete : false, renderPage : function(pageUuid, uiId) { if (this.complete) { return; } this.complete = true; var flags = {}; var dc_url = "https://www.daqconnect.com"; var s3Url = "https://s3.amazonaws.com/daqconnect"; $.dc.loader.setS3Url(s3Url); $.dc.loader.setUrl(dc_url); $.dc.loader.setFlags(flags); $.dc.service.requestAsync({data : {"id" : pageUuid}, type : "GET", url : "https://www.daqconnect.com/daq/dataPage.do", dataType : "script", contentType : "application/x-www-form-urlencoded", success : function() { $.dc.loader.embedPage(uiId, pageUuid, false); } }); } };