/* #### File Name: activeX.js
   #### Location: \home\
   #### Copyright 2002-2005 Positive Solutions (Financial Services) Limited, All Rights Reserved
   #### Coded By: Joanne Houghton
   #### Description: Created to activate ActiveX controls
   #### Parameters: 
   #### Dependencies: 
   #### Version: 1.0
   #### Checked: 
   #### Revised Dates: 
   #### Revision Notes:
*/

function CreateControl(divID, width, height, URL)
{
  var d = document.getElementById(divID);
  d.innerHTML = '<object type="application/x-shockwave-flash" data="' + URL + '" width="' + width + '" height="' + height +'"><param name="movie" value="' + URL + '">';
}