function windopenblogo(){   
  window.open("blogin.html","","width=700,height=468,resizable=no");   
  window.opener = null;   
} 
function windopenplogo(){   
  window.open("plogin.html","","width=700,height=468,resizable=no");   
  window.opener = null;   
}
function overView(elmt){
	elmt.className="menu_td_red";
}
function outView(elmt){
	elmt.className="menu_td_blk";
}
function overViewIndex(elmt){
	elmt.className="menu_td_index_red";
}
function outViewIndex(elmt){
	elmt.className="menu_td_index_blk";
}
function drawDate(){
	var s="";
	d = new Date();
	var theYear = d.getYear();
	if(theYear<1900){
		theYear=theYear+1900;
	}
	s += (theYear)+ "-";
	s += (d.getMonth() + 1) + "-";
	s += d.getDate() + " ";
	if(d.getDay() == 1){
	   s+= "Monday";
	}else if(d.getDay() == 2){
	   s+= "Tuesday";
	}else if(d.getDay() == 3){
	   s+= "Wednesday";
	}else if(d.getDay() == 4){
	   s+= "Thursday";
	}else if(d.getDay() == 5){
	   s+= "Friday";
	}else if(d.getDay() == 6){
	   s+= "Saturday";
	}else if(d.getDay() == 7){
	   s+= "Sunday";
	}
	document.write(s);
}