
window.addEvent('domready', function() {
	new Request({
		'url': '/?ajax=1&intent=component&action=request&component=login',
		'onSuccess': function(_html) {
			$('login_cmp_content').set('html', _html);
			new Element('iframe', {'name':'hole','id':'hole'}).inject(document.body);
			$('fcLogin_form').set('target', 'hole');
		}
	}).send();
});