      function closeWindow(id) {
       document.getElementById(id).style.display = 'none';
      }

      function showWindow(id) {
       document.getElementById(id).style.display = 'block';
      }
      
      function back() {
        history.back(1);
      }
       
      function insertFlash(movieName) { 
        if (location.host == 'localhost') {
            var path = "/Profilum/JadeCMS/Uploads/Pages/Media/";
        } else {
            var path = "/JadeCMS/Uploads/Pages/Media/";
        }
        var playerPath = "swf/ProgressiveVideo.swf";
        var path = "/Profilum/JadeCMS/Uploads/Pages/Media/";
        var extenstion =".flv";
        var width = 480;
        var height = 420;
        document.write('<object type="application/x-shockwave-flash" data="'+ playerPath + '?movie=' + path + movieName + extenstion +'" width="'+width+'" height="'+height+'" id="'+movieName+'">');
        document.write('<param name="movie" value="' + playerPath + '?movie=' + path + movieName + extenstion +'"');
        document.write('<param name="quality" value="high" />');
        document.write('<param name="bgcolor" value="#606060" />');
        document.write('</object>');
      }
