// JavaScript Document
function MP_hide_loading(){
	
	$(window.modalElement).hide();
	$('#MP_mask').fadeOut();
}
      
function MP_show_loading(elementId) {
    
	 	var element;
		//Get the screen height and width
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
		//mask i butun ekran edirik
		$('#MP_mask').css({'width':maskWidth,'height':maskHeight});
		//transition effect		
		$('#MP_mask').fadeIn(10);	
		$('#MP_mask').fadeTo("slow",0.6);	
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
		//Set the popup window to center
		if(elementId == "") {
			element = "#MP_loading";
		} else {
			element = elementId;	
		}
		$(element).css('top',  winH/2-$(element).height()/2-110);
		$(element).css('left', winW/2-$(element).width()/2);
		//transition effect
		$(element).show(1); 
		window.modalElement = element;
		
};		

