function turnOn(imageNo){ document.images['button' + imageNo].src="images/button" + imageNo + "b.gif" } function turnOff(imageNo){ document.images['button' + imageNo].src="images/button" + imageNo + ".gif" } function selectCountryLanguage(objSelect) { var strSelection=objSelect.options[objSelect.selectedIndex].value; var arySelection=strSelection.split(":"); if(arySelection[0]=='de' && arySelection[1]=='de') { var strURL='http://www.alphabet.de'; } else { var strURL="index.asp?co="+arySelection[0]+"&la="+arySelection[1]+"&sid="+arySelection[2]+"&force=1"; } document.location=strURL; }