YAHOO.util.Event.onAvailable("videoSearch", function() {
	this.onsubmit = function(e) {
			e.preventDefault();
			var title = document.videoSearch.searcharg.value;
			var mattype = document.videoSearch.m.value;
			var sort = document.videoSearch.SORT.value;
			var searchString = "t:" + title + "&m=" + mattype + "&SORT=" + sort;
			searchString = encodeURI(searchString);
			window.location.href = "http://rosie.menlo.edu/search/X?" + searchString;
};
});
