// scripts to make the app cross browser compatible

// difference in the cursor
function CursorHand(theElement)
{
	var browser = navigator.appName

	if (browser == 'Microsoft Internet Explorer')
	{
		theElement.style.cursor = 'hand';
	}
	else
	{
		theElement.style.cursor = 'pointer';
	}
}