function loadFlash()
{
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) 
{  
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="955" height="603"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="Files/System/frontSlider.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#000000" />'
    + '<embed src="Files/System/frontSlider.swf" quality="high" scale="noscale" wmode="transparent" bgcolor="#000000" '
    //set dimensions here//
    + 'width="955" height="603" name="Slider" align="middle"'
    //-------------------//
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>'; 
    document.getElementById('flash').innerHTML = oeTags;
    document.getElementById('flash').style.display = 'block';
    document.getElementById('flash').style.visibility = 'visible';
} 
else 
{  
   displayPage();
   hideFlash();
}
}
