﻿(function($) {
	$.fn.openPopup = function(popup,w,h) {

		param = {action : "open_popup", "popup":popup};

		$.post("test_ajax.php", param, 
			function success(result) {
				
				Shadowbox.open({
					content:    result,
					player:     "html",
					height:     h,
					width:      w				
				});
		});
	}
	
	$.fn.deleteLoc = function(popup,w,h,id) {

		param = {action : "open_popup", "popup":popup,"id":id};

		$.post("test_ajax.php", param, 
			function success(result) {
				Shadowbox.init();
				Shadowbox.open({
					content:    result,
					player:     "html",
					height:     h,
					width:      w				
				});
		});
	}
	
})(jQuery);

