function EmbedObject(filename,objid,width,height,wmode,flashvars)
{
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + width + '" height="' + height + '" id="' + objid + '"  align="middle">\n');
    document.write('  <param name="allowScriptAccess" value="sameDomain" />\n');
    document.write('  <param name="movie" value="' + filename + '" />\n');
    document.write('  <param name="quality" value="high" />\n');
    document.write('  <param name="bgcolor" value="#5289BC" />\n');
    document.write('  <param name="wmode" value="' + wmode + '" />\n');
    document.write('  <param name="FlashVars" value="' + flashvars + '" />\n');
    document.write('  <embed src="' + filename + '" wmode="' + wmode + '" FlashVars="' + flashvars + '" quality="high" bgcolor="#5289BC" width="' + width + '" height="' + height + '"  name="' + objid + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
    document.write('</object>\n');
}

function toggleLayer(whichLayer)
{
  var secondaryMenus = new Array('oNas', 'wiad', 'uslugi', 'zegluga', 'kontakt');
  for (i=0; i<secondaryMenus.length; i++) {
    if (secondaryMenus[i] != whichLayer) {
      document.getElementById(secondaryMenus[i]).style.top = "30px";
    }
    else {
      document.getElementById(secondaryMenus[i]).style.top = "0";
    }
  }	  	
} 