//Nyelvválasztó

var s = new String(window.location);

function Nyelvcsere() {

n = document.nyelvval.nyelv.selectedIndex;

ny =document.nyelvval.nyelv.options[n].value;

s = s.replace( /(\/magyar\/|\/deutsch\/|\/english\/)/,"\/" + ny +"\/");

window.location = s;
}
