

function open_register(mode){

   if(mode==0) window.location='register.php?mode=0';            ///  register own club
   else if(mode==1) window.location='register.php?mode=1';   ///   register another club

}


/* check ÇèÒ club «éÓÁÑéÂ */
function check_have_club(value){

          window.open('http://www.tlcthai.com/club/check_club.php?name='+value,'wincheck','width=200,height=200'); 

}

function popfile(mode){


	if(typeof(openFile)!='object'){
		   openFile=window.open('file_manager.php?mode='+mode,'filemanager','top=50,left=200,toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=520,height=500');      
    }else{
		
		if(openFile.closed){

          openFile=window.open('file_manager.php?mode='+mode,'filemanager','top=50,left=200,toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=520,height=500');

		}else{

           openFile.focus();
		}

	}


}