
function NoAccessMsg(){
	var msg = "        RESTRICTED ACCESS \n\n  Please LOG IN to access this information"
	if (confirm(msg)) 
		location.href='HomeInit.asp'
	else
		return(false);
}

