// JavaScript Document

function changePage (fElement) {	
	var galNum = fElement.value;
	var iObj = document.getElementById ('photoFrame');
	
	if (galNum != '') {
		iObj.src = 'gallery_pages/gallery.php?gal=' + galNum;
	} else {
		iObj.src = 'gallery_pages/gallery_home.php';	
	}
}
