function stayInformed()
{
	new Request.HTML({
		url: 'requires/req_stayInformed_form.php',
		method:'post',
		update: $('newsFormAjax'),
		onRequest: function() {$('newsFormAjax').empty().addClass('loading');},
		onComplete:function(responseTree, responseElements, responseHTML)
		{
			$('newsFormAjax').removeClass('loading');
			/*if(responseHTML!='')
			{
				$('commentsVisitorAjax').set('html',responseHTML);
			}*/
		},
		evalScripts: true
		}).post($('newsForm'));	
}
