// JavaScript Document
function saveselection() {if (document.form1.sw) document.cookie='sw='+escape(document.form1.sw.value);};function readcookie(sname){var c=document.cookie;if (c.length<0) return false;var b=c.indexOf(sname+'=');if (b==-1) return false;var d=c.indexOf(';',b);if (d==-1) d=c.length;return unescape(c.substring(b+sname.length+1,d));};function readselection() {if (document.form1.sw) {c=readcookie('sw');if (c) document.form1.sw.value=c;};};

function OnSearchSubmit(){var b_return=true;if (document.form1.sw){for(var i=0;i<document.form1.sw.value.length;i++){if (document.form1.sw.value.charAt(i)!=" ")	{lh="searchresult.html?sw="+encodeURIComponent(document.form1.sw.value);b_return=false;break;}}}if (b_return) return;saveselection();window.open(lh,"_self");}