function add_quest() {	var name = $('name_quest').get('value');	if(!name) {		alert('Введите имя');		return false;	}	var mail = $('mail_quest').get('value');	if(!mail) {		alert('Введите адрес почты');		return false;	}	var text = $('text_quest').get('value');	if(!text) {		alert('Введите текст сообщения');		return false;	}		var win_editor = new Element('div',	{	'id':'loader_quest',	'styles': {	'background': 'url("content/images/buttons/preload.gif") no-repeat scroll center center',	'margin': 'auto',	'position':'absolute',	'width': '100%',	'height': '100%'	}	}).inject($('rez_out_div_quest'),'top');		var forma = $('form_quest');	var myRequest = new Request.HTML({        url: 'admin/questions/ajax/action.php?add_quest',        method: 'post',		update: 'rez_out_div_quest',        onRequest: win_editor,		onComplete: function(){		}    }).send(forma);}function showQuest(coord, theme) {	var pars = $H({        theme:theme    }).toQueryString();	var myRequest = new Request.HTML({		url: 'admin/questions/ajax/action.php?showForm',        method: 'get',        update: 'div_form_quest',        onComplete: function(){			//alert(coord.x);			var top=coord.top;			$('div_form_quest').set({				'styles': {					'top': top - 150 +'px'				}			});		}    }).send(pars);}
