//Merilyn Burch-Carney javascript
function ConfirmUpload() 
	{
	input_box=confirm("Are you sure that you want to Upload the selected Image?");
	if (input_box!=true) {
		return false;
		}
	else {
		return true;
		}
	}

function rclick() {
	alert("All content is property of M Burch-Carney.\nPlease do not copy");
	return false;
	}

function galleryPop(imagePage,width, height) {
		photoWin = window.open(imagePage,'photo','width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
		photoWin.focus();
	}

function popfields(selected,currPage) {
	location.href=currPage+"?status=1&img="+selected;
	}
