function showNewsletter() {
	var win = new Window({
		className: "alphacube",
		width:350,
		height:80,
		zIndex: 100,
		resizable: true,
		title: "Newsletter",
		showEffect:Effect.BlindDown,
		hideEffect:Effect.SwitchOff,
		draggable:true,
		wiredDrag: true,
		destroyOnClose: true,
		recenterAuto:false
	});

	win.showCenter();
	win.getContent().update('<p>Aby zapisać się do naszego newslettera wystarczy podać swój adres e-mail oraz kliknać w link, jaki nadejdzie w wiadomości.</p><form method="post" action="'+root+'/newsletter/dodaj"><fieldset style="display:none;"><input type="hidden" name="_method" value="POST" /></fieldset><fieldset><input name="data[NewsletterAddress][email]" type="text" maxlength="250" value="" id="NewsletterAddressEmail" /><input class="submit" type="submit" value="OK" /></fieldset></form>');
}