/////////////////////////////////////////////////////////////////////////
//      _
//    <' )_,  Copyright RealDecoy
//    (    )          2005
//   ~~~~~~~~
//
/////////////////////////////////////////////////////////////////////////

//	ADDED OCT 12 2005 BY MM

function rd_langToggle() {
	var tempURL;
	var sURL = window.location.href;
	if(sURL.indexOf("/fr/") > 0) {
		tempURL = sURL.replace(/\/fr\//, "/en/");
	} else {
		tempURL = sURL.replace(/\/en\//, "/fr/");
	}
	window.location.href = tempURL;
}



function submitSearch(){
  if (document.forms['search'].Query.value){
    document.forms['search'].action = '/search/result_' + document.forms['search'].lang.value + '.asp';
    document.forms['search'].submit();
    return;
  }
  top.location.href = '/search/index_' +  document.forms['search'].lang.value + '.html';
}