// JavaScript Document For Additional Features

/* %%%%% Email A Friend %%%%%% */
function emailPage()
{
	window.open('http://www.kakinan.com/aboutus/emailthispage.php?url='+location.href,'mywindow',
	'width=450,height=380,toolbar=no,locationbar=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no');
}

function greetings(username)
{
		if(username == null)
			username = "";
		else
			username = "<br>" + username;
		
		now = new Date();
		hour = now.getHours();
		
		var greetings = (hour < 12)?"Good Morning":" ";
		greetings = (hour >= 12 && hour < 17)?"Good Afternoon":greetings;
		greetings = (hour >= 17)?"Good Evening":greetings;
	   	document.write("<strong>" + greetings + ",</strong>" + username + "<br>");
		var days = new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
		var months = new Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
		document.write(days[now.getDay()] + ", " + now.getDate() + " " + months[now.getMonth()] + " " + now.getUTCFullYear());
}