﻿/***********************************************************************/
/*                                                                     */
/*   Copyright (C) 2008-2010  Ready Technology.                        */
/*   Author     : rocachi - Do Van Chien - rocachien@yahoo.com.        */
/*   Powered By : Ready Technology Co.,Ltd. http://23vn.com            */
/*                                                                     */
/*   Created    : 16-08-2008 11:02:05.                                 */
/*   Modified   : 16-04-2008 11:02:05.                                 */
/*   Description: MAIN MENU.                                           */
/*                                                                     */  
/***********************************************************************/

function railtime(field, order){
	
	var o_tu_ga = document.all?document.all["id_tu_ga"]:document.getElementById?document.getElementById("id_tu_ga"):"undefined";
	var o_den_ga = document.all?document.all["id_den_ga"]:document.getElementById?document.getElementById("id_den_ga"):"undefined";
	var o_tuyen = document.all?document.all["id_tuyen"]:document.getElementById?document.getElementById("id_tuyen"):"undefined";
	var o_tau = document.all?document.all["id_tau"]:document.getElementById?document.getElementById("id_tau"):"undefined";
	var o_per_page = document.all?document.all["id_per_page"]:document.getElementById?document.getElementById("id_per_page"):"undefined";
	
	var id_tu_ga = 0;
	var id_den_ga = "11726";
	var id_tuyen = 0;
	var id_tau = 0;
	var id_per_page =10;
	var url ="";
	field = (field=="")?"diluc":field;
	order = (order!="N")?"Y":order;

	if(o_tu_ga != 'undefined')
		id_tu_ga = o_tu_ga.options[o_tu_ga.selectedIndex].value;
	if(o_den_ga != 'undefined')
		id_den_ga = o_den_ga.options[o_den_ga.selectedIndex].value;
	if(o_tuyen != 'undefined')
		id_tuyen = o_tuyen.options[o_tuyen.selectedIndex].value;
	if(o_tau != 'undefined')
		id_tau = o_tau.options[o_tau.selectedIndex].value;
	if(o_per_page != 'undefined')
		id_per_page = o_per_page.options[o_per_page.selectedIndex].value;
	//
	url = url_railtime + id_tu_ga +"/"+ id_den_ga +"/"+ id_tuyen +"/"+ id_tau+"/"+ id_per_page +"/"+ field +"/"+ order;
//alert(url);	
	readyLoader(url,'ajRailtime',1);
}

