﻿// JScript File

//-------SyncListAndMap_Fn --------------------------------------------------------------------------------------
//
//	Purpose:  Assemble image URL and assign to frame, set tag at <DIV ID=ResText></Div>
//	Verson:   1.0 / 05.04.02
//----------------------------------------------------------------------------------------------------------
function SyncListAndMap_Fn( iNewSetting )
{
	var oListBox	 = parent.frames[0].document.getElementById("MapVersion" );

	oListBox.selectedIndex = iNewSetting;
}

//-------ShowMap_Fn--------------------------------------------------------------------------------------
//
//	Purpose:  Assemble image URL and assign to frame, set tag at <DIV ID=ResText></Div>
//	Verson:   1.0 / 05.04.02
//----------------------------------------------------------------------------------------------------------
function ShowMap_Fn( iNewSetting )
{
	var oListBox	 = parent.frames[0].document.getElementById("MapVersion" );
//	var oListBox	 = parent.frames[0].document.all[ "MapVersion" ];
	oListBox.selectedIndex = iNewSetting;
}

//--NewMap_Fn------------------------------------------------------------------------------------
//
//	Purpose:  Display statement about use of personal data provided by user
//	Verson:   1.0 / 7.20.00
//----------------------------------------------------------------------------------------------------------
function NewMap_Fn() 
{
	var sEvo	  	= String( document.getElementById("MapVersion" ).value )	
	
	parent.frames[1].location = sEvo;
}