/**
 * @author sharmo
 */
function showNonFlash()
{
	//show non-flash message after page load for users with no flash. Don't forget that if you have flash the id will be overwritten, so check for null first
	if(document.getElementById('nonFlashContent') != null)
	{
		document.getElementById('nonFlashContent').style.visibility = "visible";
	}
}