		
		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 sterge()
		{
			var cauta = document.getElementById( 'cauta_melodie' ).value;
			
			if( cauta == "Ce melodie preferi ?" )
			{
				document.getElementById( 'cauta_melodie' ).value = '';
			}
		}
		
		function iesire()
		{
			var cauta = document.getElementById( 'cauta_melodie' ).value;
			
			if( cauta == "" )
			{
				document.getElementById( 'cauta_melodie' ).value = "Ce melodie preferi ?";
			}
		}
		
		function cauta()
		{
			var query = document.getElementById( 'cauta_melodie' ).value;
			if( query == "Ce melodie preferi ?" )
			{
				alert('Melodia pe care vrei sa o cauti este ...'); return false;
			}
			else
			{
				return true;
			}
		}
		function popup_contact()
		{
			my_window= window.open ("http://www.muzicapopulara.net/contact.php",
			"mywindow1","status=yes,toolbar=no,menubar=no,location=no,resizable=no,width=500,height=380");
			my_window.moveTo(50,50);
		}
		function popup_propunere()
		{
			my_window= window.open ("http://www.muzicapopulara.net/propune-melodie.php",
			"mywindow1","status=yes,toolbar=no,menubar=no,location=no,resizable=no,width=500,height=380");
			my_window.moveTo(50,50);
		}
