function setLocation( id )
{
	var selectOne = document.formOne.region;
	
	for( i=0; i<selectOne.options.length; i++ )
	{
		if( selectOne.options[i].value == id )
		{
			selectOne.options[i].selected = true;
			break;
		}
	}
}

function warning() 
{
	alert("The content accessed here is strictly PRIVATE AND CONFIDENTIAL. Please ensure that the information is protected, particularly if downloaded to a local computer.");
}