                function processIn(ourForm) {

                        if (!ourForm.q.value) {
                                alert('you need to put in something to search for. try \'ipod\'');
                                return false;
                        }

                        if (!ourForm.mp.value) {
                                alert('everyone likes something for free but you have to put in a max price');
                                return false;
                        }
			var s = ourForm.mp.value.replace(/,/g,'');
			var q = ourForm.q.value.replace(/ /g,'+');
                        window.location = 'http://www.forunder.net/search/'+q+'/'+s;
                        return false;
                }
