/*
function MM_CheckFlashVersion(reqVerStr,msg){
  with(navigator){
    var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){  
      var flashVer = -1;
      if (plugins && plugins.length > 0){
        var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
        desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
        if (desc == "") flashVer = -1;
        else{
          var descArr = desc.split(" ");
          var tempArrMajor = descArr[2].split(".");
          var verMajor = tempArrMajor[0];
          var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
          var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
          flashVer =  parseFloat(verMajor + "." + verMinor);
        }
      }
      // WebTV has Flash Player 4 or lower -- too low for video
      else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;

      var verArr = reqVerStr.split(",");
      var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
  
      if (flashVer < reqVer){
        if (confirm(msg))
          window.location = "http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
      }
    }
  }
}
*/
/*
	Webdesign Mika Salonen
	info@webdesignsalonen.com
	http://www.webdesignsalonen.com
*/

var popupwindow = null;

function flash8ikkuna(winname, filename, wintitle, winwidth, winheight)
{
  var windowX = (window.screen.width - winwidth) / 2;

  popupwindow = window.open('', winname, 'toolbar=0,menubar=0,location=0,status=0,width=' + winwidth + ',height=' + winheight + ',resizable=0,scrollbars=0,screenX=' + windowX + ',left=' + windowX + ',screenY=50,top=50');

  var content = '<html><head><title>' + wintitle + '</title></head>';
//  content += '<body onOpen="MM_CheckFlashVersion(\'8,0,0,0\',\'Content on this page requires a newer version of Macromedia Flash Player. Do you want to download it now?\');" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0" style="margin: 0px; padding: 0px" bgcolor="#0E2572">';
  content += '<body leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginwidth="0" marginheight="0" style="margin: 0px; padding: 0px" bgcolor="#0E2572">';
  content += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + winwidth + '" height="' + winheight + '" id="FLVPlayer">';
  content += '  <param name="movie" value="/videot/FLVPlayer_Progressive.swf">';
  content += '  <param name="salign" value="lt">';
  content += '  <param name="quality" value="high">';
  content += '  <param name="scale" value="noscale">';
// alkup  content += '  <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=http://www.siimaseura.fi/videot/Clear_Skin_3&streamName=' + filename + '&autoPlay=true&autoRewind=false">';
  content += '  <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=/videot/Clear_Skin_3&streamName=' + filename + '&autoPlay=true&autoRewind=false">';
// alkup content += '  <embed src="http://www.siimaseura.fi/videot/FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_3&streamName=' + filename + '&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="' + winwidth + '" height="' + winheight + '" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">';
  content += '  <embed src="/videot/FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=/videot/Clear_Skin_3&streamName=' + filename + '&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="' + winwidth + '" height="' + winheight + '" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">';
  content += '</object>';
  content += '</body></html>';

  var doc = popupwindow.document;
  doc.open();
  doc.write(content);
  doc.close();

  popupwindow.focus();
}