function CheckForm(form)
{
	url = '/gallery/';
	if(0 != form.gallery.value)
		url += form.gallery.value + '/';
	if(0 != form.photographer.value)
		url += '?p=' + form.photographer.value;
	if(url != '/gallery')
		document.location.replace(url);
	return false;
}