function ShowNotification(text,duration){
	
	time = duration * 1000;
	
	putin = '<h1>'+text+'</h1>';
	
	$('notificationtext').set('html', putin);

new Fx.Tween('notification').start('height', '60px');

(function(){ new Fx.Tween('notification').start('height', '0px'); }).delay(time);

//(function(){ new Fx.Slide('notification').slideOut(); }).delay(time);

}