function fHomeMenuChange( nPageID, nPageMode ) {
	oForm = document.getElementById( "frmMaster" );
	switch( nPageID ) {
	case 1:
		oForm.action = "reflections/index18.asp";
		break;
	case 2:
		oForm.action = "reunion/index.asp";
		oForm.hReunionMode.value = nPageMode;
		break;
	case 3:
		if( nPageMode ) {
			oForm.hGalleryID.value = nPageMode;
			if( nPageMode < 10 ) {
				oForm.action = "gallery/gallery" + "00" + nPageMode + ".asp";
			} else {
				if( nPageMode < 100 ) {
					oForm.action = "gallery/gallery" + "0" + nPageMode + ".asp";
				} else {
					oForm.action = "gallery/gallery" + nPageMode + ".asp";
				}
			}
		} else {
			oForm.action = "gallery/gallery001.asp";
		}
		break;
	case 4:
		oForm.action = "soc/index.asp";
		break;
	case 5:
		if( nPageMode >= 0 ) {
			oForm.hSoundsMode.value = nPageMode;
		}
		oForm.action = "sounds/index.asp";
		break;
	case 6:
		oForm.action = "kitchen/index.asp";
		break;
	case 12:
		oForm.action = "interviews/index.asp";
		break;
	default:
		oForm.action = "index.asp";
	}
	oForm.hPageID.value = nPageID;
	oForm.submit();
}
function fMenuMessageboardChange( nPageID, nMessageID ) {
	oForm = document.getElementById( "frmMaster" );
	oForm.hPageID.value = nPageID;
	oForm.hMessageID.value = nMessageID;
	if( oForm.hViewingOptions ){
		oForm.hViewingOptions.value = "preferences";
	}
	oForm.action = "soc/index.asp";
	oForm.submit();
}
