function showPhoto(photo)
{
	var photod = document.getElementById('photodiv');
	var html = '<a href="' + photo + '" class="highslide" onclick="return hs.expand(this)"><img src="' + photo + '" name="photo_main" width="349" /></a>';
	photod.innerHTML = html;
}

function submitForm()
{
	document.bottomForm.submit();
}

