	String.prototype.trim = function()
{
	return this.replace(/(^\s*)|(\s*$)/g, "");
}
	
	function ListButton_onClick(league_id){
	  var fm=document.fm; 

    fm.league_id.value = league_id;
	
		fm.aT.value = "search_league_id";
    fm.action="schresult_list.jsp";
    fm.submit();
	}
	function ViewDetialButton_onClick(match_ymd, team_part){

    var popup;
    var fm=document.popform; 
    fm.match_ymd.value = match_ymd;
    fm.team_part.value = team_part;

if(Number(match_ymd.substring(0,4))>=2009){
    window.open("","schresult","status=yes,width=1024,height=768,left=10,top=0,scrollbars=yes,resizable=yes")
}else{
    window.open("","schresult","status=yes,width=720,height=700,left=10,top=0,scrollbars=yes,resizable=yes")
}
    fm.target="schresult";
	  fm.action="schresult_view.jsp";
	  fm.submit();
    
	}

	function view(cd,match_ymd,team_part,grade){
	  var fm =document.popform;
	  fm.match_ymd.value = match_ymd;
    fm.team_part.value = team_part;
     
    if(grade == "null"){
      alert("È¸¿øÀü¿ë ÄÚ³ÊÀÔ´Ï´Ù. \n\n·Î±×ÀÎÀ» ¸ÕÀú ÇØÁÖ½Ê½Ã¿À.");
      location.href="/member/login.jsp";
    }else{
//      alert("ÇöÀç ¼­ºñ½º Á¡°ËÁßÀÔ´Ï´Ù.");

    if(cd == "vod"){

        window.open("","vodhigh","width=394, height=414, scrolling=yes");
        fm.target="vodhigh";
	      fm.action="highlight_view.jsp";
	      fm.submit();
	      
    }else if(cd == "relay"){
        conf();
        var url=popform.conf.value;

        window.open("","text","width=610, height=600, scrollbars=yes");
        fm.target="text";
	      fm.action=url+"/multi01/sum_text.jsp";
	      fm.submit();
    }

	}
}
	function conf(){
		var ipconfig="http://165.243.187.82:8080";
		var fm=document.popform;
		fm.conf.value = ipconfig;
	}
	
 function searchHt(){ /// ³¯Â¥º° °Ë»ö
   var fm=document.fm; 
   fm.aT.value = "search";
   fm.action = "schresult_list.jsp";
   fm.submit();
  }
  
  
/**
 *  ¸ÅÄ¡¸Þ´º·Î ÀÌµ¿
 */
function move_lastmatch_menu(opp_club_id, opp_club_name, match_time, h_a_part, match_ymd, days) {
	var fm = document.last_match_form;
	
	fm.last_opp_club_id.value = opp_club_id;
	fm.last_opp_club_name.value = opp_club_name;
	fm.last_match_time.value = match_time;
	fm.last_h_a_part.value = h_a_part;
	fm.last_match_ymd.value = match_ymd;
	fm.last_days.value = days;
	
	fm.target = '_self';
	fm.action = '/match/match/lastMenu_list.jsp';
	fm.submit();
	
}

  
/**
 *  ¸ÅÄ¡¸Þ´º·Î ÀÌµ¿
 */
function move_nextmatch_menu(opp_club_name, match_time, h_a_part, match_ymd, match_place, days, opp_club_id) {
	var fm = document.next_match_form;
	
	fm.target = '_self';
	
	fm.opp_club_name.value = opp_club_name;
	fm.match_time.value = match_time;
	fm.h_a_part.value = h_a_part;
	fm.match_ymd.value = match_ymd; 
	fm.match_place.value = match_place;
	fm.days.value = days;
	fm.opp_club_id.value = opp_club_id;
		
	fm.action = '/match/match/nextMenu_list.jsp';
	fm.submit();
	
}
