/*
*
* Модальне вікно
*
*/
// Зміна вмісту залежно від ID 
// <span class="mwc" id="textWindows">window</span>
$(document).ready(function() 
{

	$('.mwc').click(function(){
		var id = $(this).attr('id');
		$('#modal_Window').show();
		$('#modal_Win_bg').show();
		$('#modal_Win_content').html('<br><div style="height:58px; padding-top:10px; color:#727c82; text-align:center; vertical-align:middle;  font:normal 21px georgia, arial, tahoma">Триває завантаження інформації... <br><img src="ajax/progressbar.gif" alt="loading..."/></div>');
		$.ajax ({
			type: "post",
			url: "jscript/modal/modalWindows.php",
			data: {id: id}, 
			dataType: "html",
			success: function(answ){
				$('#modal_Win_content').html(answ);
			}
		});
		
		return false;
	});
	// close windows 
	$('#modal_Win_ok').click(function(){
		$('#modal_Window').hide(); 
		$('#modal_Win_bg').hide();
		$('#modal_Win_content').html('');
	});  
	
	$('#modal_Win_close').click(function(){
		$('#modal_Window').hide();
		$('#modal_Win_bg').hide();
		$('#modal_Win_content').html('');
	});

});
