function searchAll()
{
	if (!((navigator.appName == "Microsoft Internet Explorer") && parseInt(navigator.appVersion) >= 4))
	{
		alert('The dictionary is viewable in IE 4 (Windows) and above.');
	}
	if(event.keyCode==13 || event.keyCode==3)
	{
		word = document.ds.w.value;
		var url = "http://www.insightin.com/dict/searchdict.php?w=" + word;
		window.showModelessDialog(url, window, "dialogWidth:400px; dialogheight:250px; status:no; help:no");
		return false;
	}
}