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 prodDetImg(i) {
	if ($('imgbox1')) $('imgbox1').style.display = 'none';
	if ($('imgbox2')) $('imgbox2').style.display = 'none';
	if ($('imgbox3')) $('imgbox3').style.display = 'none';
	if ($('imgbox4')) $('imgbox4').style.display = 'none';
	if ($('imgbox5')) $('imgbox5').style.display = 'none';
	$('imgbox' + i).style.display = 'block';
}