/*
 * Function for toggling current page language to the next
 * @since 2008-12-19
 * $Id: langswitch.js 585 2009-01-27 01:17:39Z the_ferg $
 */
function togglelang(){var b=document.location.href;var a="/french/";var c="/english/";b=b.indexOf(c)>-1?b.replace(c,a):b.replace(a,c);document.location.href=b;return false;}
