/*======= header change =======*/
myTime=(new Date()).getHours();
if(myTime<6 || myTime>=18) {
	document.write('<link rel="stylesheet" type="text/css" href="/ctrl2/css/green.css" 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();
}