	function makeModal(){
		new MUI.Modal({
			id: 'modalDemo',
			type: 'modal2',
			width: 745,
			height: 250,
			loadMethod: 'iframe',
			contentURL: '/en/login.php',
			padding: { top: 0, right: 0, bottom: 0, left: 0 },
			controlsOffset: { top: 0, right:0 }

		});
	}	
		
	window.addEvent('load', function(){
		
			$('loginBtn').addEvent('click', function(e){
				new Event(e).stop();
				makeModal();
			});
	});
