function popInstruction(){
      setTimeout("showInstructions()", 60);
}
function showInstructions(){

      var browser;
     if(document.all && document.getElementById && !window.opera){
            if (typeof document.body.style.maxHeight != "undefined") {
              browser = "ie";
            } else {
              browser = "ie6";
            }
      }else if(!document.all && document.getElementById && !window.opera){
            browser = "ff";
      }

      var so = new SWFObject('./skins/default/flash/download_steps_' + browser + '.swf', null, 560, 165, '6');
      so.addParam("wmode", "transparent");
      so.write("download_instructions_mc");
}
