var popup = {
	init : function(){
		//var cookie = Cookie.read('openPopup');
		//if(cookie == null){ //must be ==
		//if(cookie == null || cookie != null){ //must be ==
			$$('table.munkalap')[0].style.display = "none";
			var req = new Request( {
				method : 'get',
				url : 'enter.html',
				onComplete : function(responseText, responseXML) {
					new Element('div', {
						'html' : responseText,
						id : 'enterFrame'
					}).inject(document.body , 'top');
				},
				evalScripts : true
			});
			req.send();
		//}

	},
	close : function(lang){
		//Cookie.write('openPopup', true, {duration: 1});
		//window.location = "index.php?l="+lang;
		$('enterFrame').destroy();
		$$('table.munkalap')[0].style.display = "";
	}
};

window.addEvent('domready', popup.init);

