function loadFlash()
{  
   //loadVideo();
   loadLogo();
} 

function loadVideo(){
	 var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="619" height="178"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="Files/System/video_totalPreload.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="Files/System/video_totalPreload.swf" quality="high" scale="noscale" wmode="transparent" bgcolor="#ffffff" '
    //set dimensions here//
    + 'width="619" height="178" name="video" align="top"'
    //-------------------//
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    //document.write(oeTags);   
    document.getElementById('flash').innerHTML = oeTags;
    document.getElementById('flash').style.display = 'block';
    document.getElementById('flash').style.visibility = 'visible';
    }
    
function loadLogo(){
	 var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="80" height="61"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="Files/System/DRFLogo.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="Files/System/DRFLogo.swf" quality="high" scale="noscale" wmode="transparent" bgcolor="#ffffff" '
    //set dimensions here//
    + 'width="80" height="61" name="logo" align="top"'
    //-------------------//
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    //document.write(oeTags);   
    document.getElementById('logo').innerHTML = oeTags;
    document.getElementById('logo').style.display = 'block';
    document.getElementById('logo').style.visibility = 'visible';
    }
    