// Javascript file to perform necessary tests and setup info to
// start MySalatTimes kiosk

function runSalatTimes()
{
	var page, winFeatures, now, nowDay, nowMonth, nowYear, isSetup ='';

	// Check if user's system is configured with cookies.
	isSetup = document.cookie;
	if (isSetup.indexOf('salattimes') == -1)
	{
		alert('Your system is not configured correctly to run \nSalatTimes. Click OK to go to the setup page.');
		location.href = 'http://www.jannah.com/prayer/init_setup.html';
	}
	else
	{
		// get today's day, month, year
		now = new Date();
		nowDay = now.getDate();
		nowMonth = 1 + now.getMonth();
		nowYear = 1900 + now.getYear();

		// Add code to open kiosk in new window

		page = 'http://www.jannah.com/cgi-bin/prayer/runptime.pl?'+nowDay+'+'+nowMonth+'+'+nowYear;
		winFeatures = 'width=270,height=300,status';
		window.open(page, 'cybersalat', winFeatures);
	}

}
