


function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

//<!--
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  
}
function doIt()
              {//var height=window.outerHeight;
			   //var width=window.outerWidth;
                   window.resizeTo(1024,850);
                   window.moveTo(0, 0);
				  // window.locationbar.visible = false;
//<body onload="window.resizeTo(w,h);window.moveTo(0,0);">

				   //window.menubar.visible = false;
                   //window.location.href = "http://www.google.com/";
				   //window.self.close();
              }
      
//-->



function MonthTxt (MonthNumber) {
   var Month=new Array();
   Month[1]="January";
   Month[2]="February";
   Month[3]="March";
   Month[4]="April";
   Month[5]="May";
   Month[6]="June";
   Month[7]="July";
   Month[8]="August";
   Month[9]="September";
   Month[10]="October";
   Month[11]="November";
   Month[12]="December";
return Month[MonthNumber];
}

function status_message(i) {
  var max = 5; // number of strings
  var a = new Array();
  a[1] = "ELectric bike can change your life ."
  a[2] = "Check Out,Find information for you."
  a[3] = "Join our Hiking Group, to Exercise good for you."
  a[4] = "Save the Earth, feel the sun, enjoy the fresh air."
  a[5] = "Get rid of the suffering of oil, bike hybrid bicycle."
  defaultStatus=a[i];
  i= i+1;
  if (i > max) {
    i=1;
  }
  ii=i; //using i directly in setTimeout 
        //I got the error message: "i is not defined"
setTimeout("status_message(ii)",5000); //5 seconds

} /*end function debug*/
