﻿// JScript File
function SetLayerSize(layer){
   dc = document;
   dc.getElementById(layer).style.height = screen.availHeight - 180;
  // dc.getElementById(layer).style.height  = 520;
}


function writeFlash(idContainer,idFlash,bgcolor,width,height) {    
    str = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'";
    str+= "codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0'";
    str+=" width='"+width+"' height='"+height+"' id='"+idFlash+"' align='middle'>";
    str+="<param name='allowScriptAccess' value='sameDomain' /><param name='movie' value='"+idFlash+"' />";
    str+="<param name='quality' value='high' /><param name='wMode' value='Transparent' /><param name='bgcolor' value='"+bgcolor+"' /><PARAM NAME='FlashVars' VALUE='version=en'>";
    str+="<embed src='"+idFlash+"' quality='high' bgcolor='"+bgcolor+"' width='"+width+"' height='"+height+"' wMode='Transparent' name='"+idFlash+"' align='middle' FlashVars='version=en' ";
    str+="allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' /></object>";    
    document.getElementById(idContainer).innerHTML = str;
    document.getElementById(idContainer).style.display="block";
}

