function SearchGo49359(obj) {
if (document.getElementById('tags').value.length < 2 || document.getElementById('tags').value.length > 10) {
alert('Search minimum length two characters and a maximum length of 10 characters.');
return false;
}
if (document.getElementById('tags').value == '') {
alert('Please fill in the keywords');
return false;
}
Search_Form.action='/Search-' + encodeURI(document.getElementById('tags').value) + '-0.htm';
}