	
	function initStopper()
		{
			var marquee = document.getElementById('myScroller')
			marquee.onmouseover = stopScroller
			marquee.onmouseout = startScroller
		}

		function startScroller()
		{
			document.getElementById('myScroller').start()
		}

		function stopScroller()
		{
			document.getElementById('myScroller').stop()
		}
		
		function popuponclick()
		{
			my_window = window.open('add_event.php', '', 'toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,directories=no,width=280,height=230');
		}
		
		function newcont()
		{
			my_window = window.open('new_cont.php', '', 'toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,directories=no,width=390,height=230');
		}
		
		function chpwd()
		{
			my_window = window.open('change_password.php', '', 'toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,directories=no,width=530,height=155');
		}
		
		function chname()
		{
			my_window = window.open('change_name.php', '', 'toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,directories=no,width=310,height=128');
		}
		
		function addevent()
		{
			my_window = window.open('adauga_event.php', '', 'toolbar=no,menubar=no,resizable=no,scrollbars=no,status=no,location=no,directories=no,width=478,height=308');
		}
		
		function startTime()
		{
			var today=new Date();
			var h=today.getHours();
			var m=today.getMinutes();
			var s=today.getSeconds();
			// add a zero in front of numbers<10
			m=checkTime(m);
			s=checkTime(s);
			document.getElementById('txt').innerHTML=h+":"+m+":"+s;
			t=setTimeout('startTime()',500);
		}

		function checkTime(i)
		{
			if (i<10)
			{
				i="0" + i;
			}
			return i;
		}

		function cursor()
		{
			document.getElementById( 'cursor_nume' ).focus();
		}
		
		function cursor_pwd()
		{
			document.getElementById( 'cursor_pwd' ).focus();
		}