<html>
	<head>
	<!-- Copyright 2014 Adobe Systems Incorporated.  All rights reserved. -->
		<title>VMQ Bridging</title>
		<script type="text/javascript" src= "js/vmqBridger.js"> </script>
        <script type="text/javascript">
           /*
				Entry point for vmq.
			*/
			function initVmqView()
			{
                var vmqbrowser = dw.vmq.getVMQBrowser();

                if (vmqbrowser) 
                {
                    var vmqObj = new VmqBridgingObject(vmqbrowser);

                    if (vmqObj) {
                        vmqObj.attachDwFunctions();
                    }
                }
			}
		</script>
	</head>

	<body onLoad="initVmqView();">
	</body>
</html>

