function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

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 greeting()
{
   var today = new Date();
   var hrs = today.getHours();

   document.write("Good ");
   if (hrs < 6)
      document.write("(Early) Morning");
   else if (hrs < 12)
      document.write("Morning");
   else if (hrs <= 18)
      document.write("Afternoon");
   else
      document.write("Evening");
   document.write(" ! ");
 

}


function montharr(m0, m1, m2, m3, m4, m5, m6, m7, m8, m9, m10, m11)
{
   this[0] = m0;
   this[1] = m1;
   this[2] = m2;
   this[3] = m3;
   this[4] = m4;
   this[5] = m5;
   this[6] = m6;
   this[7] = m7;
   this[8] = m8;
   this[9] = m9;
   this[10] = m10;
   this[11] = m11;
}
function calendar()
{


   var monthNames = "JanFebMarAprMayJunJulAugSepOctNovDec";
   var today = new Date();
   var thisDay;
   var monthDays = new montharr(31, 28, 31, 30, 31, 30, 31, 31, 30,
      31, 30, 31);
   
   year = today.getYear();
   thisDay = today.getDate();
   
   if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
      monthDays[1] = 29;
   nDays = monthDays[today.getMonth()];
   firstDay = today;
   firstDay.setDate(1); // works fine for most systems
   testMe = firstDay.getDate();
   if (testMe == 2)
        firstDay.setDate(0);    
   startDay = firstDay.getDay();
     

   document.write("<TABLE align=right border=0>");
   document.write("<TR><TH COLSPAN=7>");
   document.write(monthNames.substring(today.getMonth() * 3,
      (today.getMonth() + 1) * 3));
   document.write(". ");
   document.write(year);
   document.write("<TR><TH width=26 align=right>Sun<TH width=26 align=right>Mon<TH width=26 align=right>Tue<TH width=26 align=right>Wed<TH width=26 align=right>Thu<TH width=26 align=right>Fri<TH width=26 align=right>Sat");
   document.write("<TR>");
   column = 0;
   for (i=0; i<startDay; i++)
   {
      document.write("<TD align=right>");
      column++;
   }
   for (i=1; i<=nDays; i++)
   {
      document.write("<TD align=right>");
      if (i == thisDay)
         document.write("<FONT COLOR=red>")
      document.write(i);
      if (i == thisDay)
        document.write("</FONT>")
      column++;
      if (column == 7)
      {
         document.write("<TR>"); 
         column = 0;
      }
   }
   document.write("</TABLE>");

}



	function show(){
		var obj=document.getElementById('login').style;

		if(obj.display=='none')
		{
			obj.display='';
		}
		else
		{
			obj.display='none';
		}
	}


