<!--
var unreserved = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_.~";var reserved = "!*'();:@&=+$,/?%#[]";var allowed = unreserved + reserved;var hexchars = "0123456789ABCDEFabcdef";function gethex(decimal) {return "%" + hexchars.charAt(decimal >> 4) + hexchars.charAt(decimal & 0xF);}function ecom_go() { var ecomd = document.all.param1.value; var ecome = ""; if (true) {  for (var i = 0; i < ecomd.length; i++ ) { var ch = ecomd.charAt(i); if (unreserved.indexOf(ch) != -1) { ecome = ecome + ch; } else { var charcode = ecomd.charCodeAt(i); if (charcode < 128) {ecome = ecome + gethex(charcode); } if (charcode > 127 && charcode < 2048) { ecome = ecome + gethex((charcode >> 6) | 0xC0); ecome = ecome + gethex((charcode & 0x3F) | 0x80); }if (charcode > 2047 && charcode < 65536) { ecome = ecome + gethex((charcode >> 12) | 0xE0); ecome = ecome + gethex(((charcode >> 6) & 0x3F) | 0x80); ecome = ecome + gethex((charcode & 0x3F) | 0x80);} if (charcode > 65535) { ecome = ecome + gethex((charcode >> 18) | 0xF0); ecome = ecome + gethex(((charcode >> 12) & 0x3F) | 0x80); ecome = ecome + gethex(((charcode >> 6) & 0x3F) | 0x80); ecome = ecome + gethex((charcode & 0x3F) | 0x80); }}} location.href="MSSearch.aspx?mode=itemname&param1=" + ecome + "";}} 
//-->
