$(document).ready(function(){
	$("#siteformlink").click(function(){
		$('#sendformdiv').modal({
//			close: false,
			overlayId: 'modal-overlay',
			containerId: 'modal-container',
			onOpen: prepare_form
//			onShow: contact.show,
//			onClose: contact.close
		});
		return false;
	});
	
});
function prepare_form(dialog){
	var options = { 
		success:       form_result, 
		url:       "/query.html?alax=true", 
		dataType:  'json' 
	}; 
	$('#modal-container #sendform').ajaxForm(options);
	dialog.overlay.show();
	dialog.container.show();
	dialog.data.show();	
}
function form_result(data,textStatus){
	if (textStatus == 'success') {
		//alert("Data Loaded: " + textStatus + data);
		//alert(data);
		if (data.status == 'ok') {
			//$("#holidayformdiv").hide();
			$.modal.close();
			//window.location.reload(true);
			//window.location.reload();
			//return;
		}
		alert(data.msg);
		//document.getElementById("holidayformdiv").getElementsByTagName('input')[0].focus();
	} else {
		alert("Ошибка при выполнении запроса");
	}
}
