﻿// JScript File

<!-- script related to navigation bar

function changeit(){
/*var mainname = String(document.URL);
 
// Get Base Name

var dot = mainname.lastIndexOf(".");
var slash = mainname.lastIndexOf("/");

var path = mainname.substring(0,slash+1);
var name = mainname.substring(slash+1,dot);

// Remove the en if it exists.
name = name.substring(0,name.length-1);


// Main Page
window.open (name + "e.aspx", "_self");
*/

window.open (window.location.href.replace("-f.aspx","-e.aspx"), "_self");

}

function sendSearch(var1)
{
if(!var1)
	document.location = "http://recherche.civilisations.ca/search?q="+document.forms[0].textfield.value+"&site=default_collection&output=xml_no_dtd&sort=date%3AD%3AL%3Ad1&lr=lang_fr&ie=latin1&oe=latin1&client=fra_frontend&proxystylesheet=fra_frontend"
else	//advanced search (mode=adv)
	document.location = "http://recherche.civilisations.ca/search?q="+document.forms[0].textfield.value+"&sort=date%3AD%3AL%3Ad1&output=xml_no_dtd&site=default_collection&lr=lang_fr&ie=latin1&oe=latin1&client=fra_frontend&proxystylesheet=fra_frontend&proxycustom=<ADVANCED/>&mode=adv"+document.forms[0].textfield.value+"&mode="+var1;
}

function goMenu(selected) {
	var URL = document.forms[0].navlist.options[selected].value;
	window.open (URL, "_self");
}

//-->