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";
      }
    }
  } 
}


function swfPlace( swf , width , height )
{
	
	
	var now = new Date();
	mon = now.getMonth() + 1; 

	if (mon == 1) {
			flashpath = "swf/month1.swf";
	} else if (mon == 2) {
			flashpath = "swf/month2.swf";
	} else if (mon == 3) {
			flashpath = "swf/month3.swf";
	} else if (mon == 4) {
			flashpath = "swf/month4.swf";
	} else if (mon == 5) {
			flashpath = "swf/month5.swf";
	} else if (mon == 6) {
			flashpath = "swf/month6.swf";
	} else if (mon == 7) {
			flashpath = "swf/month7.swf";
	} else if (mon == 8) {
			flashpath = "swf/month8.swf";
	} else if (mon == 9) {
			flashpath = "swf/month9.swf";
	} else if (mon == 10) {
			flashpath = "swf/month10.swf";
	} else if (mon == 11) {
			flashpath = "swf/month11.swf";
	} else if (mon == 12) {
			flashpath = "swf/month12.swf";
	}
	
  var htm = ""
  htm+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'"
  htm+="        codebase='http://download.macromedia.com/pub/shockwave/"
                    htm+="cabs/flash/swflash.cab'"
  htm+="        width   = " + width
  htm+="        height  = " + height + ">"
  htm+="<param  name    = movie value=" + flashpath + ">"
  htm+="<param  name    = quality value=high>"
  htm+="<param  name    = wmode value=transparent>"
  htm+="<embed  src     = " + flashpath + " "
  htm+="        quality = high  "
  htm+="        width   = "+ width
  htm+="        height  = " + height
  htm+="        wmode   = 'transparent' "
  htm+="        type    = 'application/x-shockwave-flash' "
  htm+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
  htm+="</embed>"
  htm+="</object>"
  
  document.write(htm)
}
