function openView(){
		///alert ("openView called");
		var morph2 = new Fx.Morph('OpenDiv');
		morph2.start({
		height: '540px'
		});
};

function closeView(){
		///alert ("closeView called");
		var anotherEl = $('OpenDiv');
		anotherEl.morph('div.Flash');
};
