//Saludo Personalizado

	if(document.cookie.length < 7)
	{
		document.cookie='nombre=PorFin';
		var today = new Date();
		var hrs = today.getHours();

		if (hrs < 5)
			alert ('Welcome, is it so late? :) good nights!');
		else if (hrs < 12)
			alert('Good morning, we hope you woke up greatly!');
		else if (hrs <= 18)
	  	              alert('Good afternoon, welcome to TheTentadero.com!');
		else if (hrs < 24)
			alert('Good nights, we hope you like what you are going to watch!');
	}

//Fin del Saludo Personalizado