function viewLarger(imageID) {
	if ($('#excludeeditorial:checked').val()=="on")
		noeditorial=1;
	else
		noeditorial=0;

	location.href="imagesview.asp?ipp=" + $('#imagesperpage').val() + "&noeditorial=" + noeditorial + "&imageid=" + imageID + "&c=" + $('#querycategory').html() + "&s=" + $('#querysubcategory').html() + "&k=" + $('#querykeyword').html() + "&sr=" + $('#querysearch').html() + "&page=" + $('#querypage').html();
}

function searchLibrary() {
	if ($('#search').val()=="") {
		alert("Please enter something in the search box");
	} else {
		if ($('#previoussearch').val()!="" && $('#innersearch:checked').val()=='1') {
			location.href="imagescategory.asp?search=" + $.URLEncode($.trim($('#search').val())) + "&previoussearch=" + $.URLEncode($.trim($('#previoussearch').val()));
		} else {
			location.href="imagescategory.asp?search=" + $.URLEncode($.trim($('#search').val()));
		}
	}
}
