<script>
function hello()
{
alert("Вітаю вас на головній сторінці!")
}
</script>
<body onLoad="hello()">
localStorage.setItem("greeted", true);
if (localStorage.getItem("greeted") !== true)
alert("Вітаю вас на головній сторінці!")
getCookie(name)
и setCookie(name, value, options)
можно подсмотреть в статье про куки.