// $Id: popup.js 3508 2008-12-30 21:02:38Z Rugoo $

'tdt.mail_editor'.namespace();
tdt.mail_editor.title = "Kapcsolat felvétel";
tdt.mail_editor.e_id = '0';
tdt.mail_editor.popup= function(title, e_id) {
	tdt.mail_editor.title = title;
	tdt.mail_editor.e_id = e_id;
	$("mail_editor_popup").show(); 
}

tdt.mail_editor.send_mail= function(obj) {
	$("mail_editor_popup_msg").update("A küldés folyamatban...");
	$('mail_submit_btn').disable();	
	new Ajax.Request("/ajax/modul/visitor_send_mail", {
		method:'POST',
		parameters:{ action:'send_mail', title : tdt.mail_editor.title, e_id : tdt.mail_editor.e_id, name:$("name").value, contact:$("contact").value, msg: $("personal_message").value },
		onFailure:function(data){
			$("mail_editor_popup_msg").update("Hiba: Az e-mail elküldése sikertelen."); 
			$('mail_submit_btn').enable();
		},
		onSuccess:function(data) {
			if(!data.responseJSON.status) {
				$("mail_editor_popup_msg").update(data.responseJSON.error);
				$('mail_submit_btn').enable();
			} else {
				if(tdt.mail_editor.title == "Kapcsolat felvétel")
				{
					$("mail_editor_popup_msg").update("Az e-mail sikeresen elküldve.");
					$('mail_submit_btn').enable();
				}
				else
				{
					$("mail_editor_popup_msg").update("Az e-mail sikeresen elküldve. Az ablak 5 mp múlva bezárul...");
					setTimeout("tdt.mail_editor.close();",5000);
				}
			}
		}
	});
}

tdt.mail_editor.close= function(){
	$("mail_editor_popup").hide();
	$("mail_editor_popup_msg").update("");
	//$("personal_message").update("");
	$("mail_submit_btn").enable();
	//$("mail_editor_popup_bg").hide();
}
