﻿
	var urlBase = 'https://www.skyrep.com/SRJoker3/';
	
	function OnLoad()
	{
		OnSRJokerSearch();
		OnSRJokerHeadLine();
	}

	function OnSRJokerSearch()
	{
		var form = document.getElementById('SRJokerBaseForm');
		form.FareCode.value = '';
		form.target = 'SRJokerSearch';
		form.action = urlBase + 'Page/FareSearch.aspx';
		form.submit();
	}


	function OnJump(strPageName, strFareCode)
	{
		var form = document.getElementById('SRJokerBaseForm');
		form.FareCode.value = strFareCode;
		form.target = '_blank';
		form.action = urlBase + 'Page/' + strPageName + '.aspx';
		form.submit();
	}

	function OnJumpByID(strPageName, strFareID)
	{
		var form = document.getElementById('SRJokerBaseForm');
		form.FareID.value = strFareID;
		form.target = '_blank';
		form.action = urlBase + 'Page/' + strPageName + '.aspx';
		form.submit();
	}

