/**
 * @author Administrator
 */
	
window.addEvent('domready', function() {



	/**
	 * Uploader instance
	 */
	/* ajax alert */
	$('nyhedsbrev_button').addEvent('click', function(event) {
		
	event.stop();
	$('nyhedsbrev_button').disabled = true;
	var myHTMLRequest = new Request.HTML({
		url:'includes/nyhedsbrev_script.php',
		onRequest: function() {  $('nyhedsbrev_status').set({text: 'Tilmelder nyhedsbrev', style:"diplay:block; font-weight:bold"}) },
		onSuccess: function(responseTree, responseElements, responseHTML, responseJavaScript) { $('nyhedsbrev_status').set({html: responseHTML})	}
		}).post($('user-form'));
	});
});