/*======= header change =======*/
myTime=(new Date()).getHours();
if(myTime>=6 && myTime<18) {
	timeCSS="yellow.css"; 
}else if(myTime<6 || myTime>=18) {
	timeCSS="green.css";
}
document.write('<link rel="stylesheet" type="text/css" href="/ctrl/css/'+timeCSS+'" media="all" />');



/*======= window open =======*/
function WinOpen(url,width,height){
   var win = window.open(url,"_blank","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + "\"");
   win.focus();
}

/*======= window close =======*/
function WinClose(){
  window.opener = window;
  var win = window.open(location.href,"_self");
  win.close();
}

