function bookMark(title, url) {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if ( window.external ) { // IE Favorite
		window.external.AddFavorite(url, title); 
	}
}

function inputClick(id, defval) {
	val = document.getElementById(id).value;
	if (val == defval) {
		document.getElementById(id).value = '';
	}
}

function inputBlur(id, defval) {
	val = document.getElementById(id).value;
	if (val == '') {
		document.getElementById(id).value = defval;
	}
}

function searchFilter() {	
	document.location = '/searchbounce.php?srt=' + $('sortby').value + '&npp=' + $('perpage').value;
}

function prodFilter(from) {	
	document.location = '/searchbounce.php?srt=' + $('sortby').value + '&from=' + from;
}
