﻿function InsertFlash(url, width, height) {
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="');
    document.write(width);
    document.write('" height="');
    document.write(height);
    document.write('" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="');
    document.write(url);
    document.write('" /><param name="quality" value="high" /><param name="wmode" value="opaque"><embed src="');
    document.write(url);
    document.write('" quality="high" wmode="opaque" width="');
    document.write(width);
    document.write('" height="');
    document.write(height);
    document.write('" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}
function InsertFlashBg(url, width, height, backgroundColour) {
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="');
    document.write(width);
    document.write('" height="');
    document.write(height);
    document.write('" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="');
    document.write(url);
    document.write('" /><param name="quality" value="high" /><param name="wmode" value="opaque"><param name="bgcolor" value="');
    document.write(backgroundColour);
    document.write('" /><embed src="');
    document.write(url);
    document.write('" quality="high" wmode="opaque" width="');
    document.write(width);
    document.write('" height="');
    document.write(height);
    document.write('" bgcolor="');
    document.write(backgroundColour);
    document.write('" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}
function InsertFlashVars(url, width, height, flashVars) {
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="');
    document.write(width);
    document.write('" height="');
    document.write(height);
    document.write('" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="');
    document.write(url);
    document.write('" /><param name="FlashVars" value="');
    document.write(flashVars);
    document.write('" /><param name="quality" value="high" /><param name="wmode" value="opaque"><embed src="');
    document.write(url);
    document.write('" quality="high" wmode="opaque" width="');
    document.write(width);
    document.write('" height="');
    document.write(height);
    document.write('" FlashVars="');
    document.write(flashVars);
    document.write('" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');
}
function ScrollToElement(theElement){
  var selectedPosX = 0;
  var selectedPosY = 0;
              
  while(theElement != null){
    selectedPosX += theElement.offsetLeft;
    selectedPosY += theElement.offsetTop;
    theElement = theElement.offsetParent;
  }
                        		      
 window.scrollTo(selectedPosX,selectedPosY);

}
