function init() {
	document.all.sword.select();
}
function checking() {
	if (document.all.sword.value == "") {
		alert("請輸入要翻譯的英文生字！");
		document.all.sword.select(); }
	else {
		document.all.sword.select();
		trans(); }
}
function trans() {
if (document.all.sword.value != "") {
	temp='http://info.babylon.com/cgi-bin/info.cgi?layout=combo.html&list=&word=';
	sword2=document.all.sword.value;
	temp2='&lang=';
	temp3=document.all.lang[document.all.lang.selectedIndex].value;
	temp4='&lang=0';
	final=temp+sword2+temp2+temp3+temp4;
	document.all.result1.src=final;
}
}
function microsoftKeyPress() {
	if (window.event.keyCode == 13)
		checking();
}
