<!--

  function openwin(url,wname,wvar)
  {
    window.open(url,wname,wvar);
  }

  function openwindow(htmlurl)
  {
    var newwin=window.open(htmlurl,"homeWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=350");
    return false;
  }

  function openmessage(htmlurl)
  {
    var newwin=window.open(htmlurl,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=350");
    return false;
  }

  function MM_openBrWindow(theURL,winName,features)
  { //v2.0
    window.open(theURL,winName,features);
  }

  function getuserlogin()
  {
    var cookieString = new String(document.cookie)
    var cookieHeader = "userlogin="
    var beginPosition = cookieString.indexOf(cookieHeader)
    var userlogin = "0"

    if (beginPosition != -1)
    {
      var userlogin = cookieString.substring(beginPosition 
        + cookieHeader.length,beginPosition 
        + cookieHeader.length+1);
    }

    if (userlogin == "1")
    {
	  return "ÒÑµÇÂ¼";
    }
	else
	{
	  return "Î´µÇÂ¼";
	}
  }
//-->
<!--
  var now=new Date();
  var day_of_week=now.getDay();
  var day_of_month=now.getDate();
  var month=now.getMonth();
  var year=now.getYear();
  var hours =now.getHours();       
  var minutes =now.getMinutes();       
  var seconds =now.getSeconds();    

  var rq="";month++;rq+=year+"-"+month+"-"+day_of_month+" "+"  ";
  if(day_of_week==0) rq+="Sun. "+hours+":"+minutes+":"+seconds;
  if(day_of_week==1) rq+="Mon. "+hours+":"+minutes+":"+seconds;
  if(day_of_week==2) rq+="Tues. "+hours+":"+minutes+":"+seconds;
  if(day_of_week==3) rq+="Wed. "+hours+":"+minutes+":"+seconds;
  if(day_of_week==4) rq+="Thurs. "+hours+":"+minutes+":"+seconds;
  if(day_of_week==5) rq+="Friday"+hours+":"+minutes+":"+seconds;
  if(day_of_week==6) rq+="Sat."+hours+":"+minutes+":"+seconds;

  function check(f)
  {
    if (f.sele.selectedIndex==0) 
      alert(f.sele.options[0].text+"!");
    else {
      f.action=f.sele.options[0].value+f.sele.options[f.sele.selectedIndex].value;
    //alert(f.action);
    parent.location.href=f.action;
  }
}

//-->