$(document).ready(function() {

function Admin()
{
	var that = this;
	var adminPane;
		
	this.LoadAction = function(action, siteId, moduleId, pmId, objectId)
	{
		
		var iframeSrc = 'http://www.e-provider.nl/admin.php?action=' + action + '&' + 
						'site_id=' + siteId + '&' + 
						'module_id=' + moduleId + '&' +
						'pm_id=' + moduleId + '&' +  
						'object_id=' + objectId;
		
		that.adminPane.CreatePane(iframeSrc);
	};
	
	this.IFrameLoading = function()
	{
		that.adminPane.IFrameLoading();
	};
	
	this.init = function()
	{
		that.adminPane = new AdminPane();
		
		// check if the top is set
		var top = GetUrlVar(document.location.href, 'top');
		if(top != null) {
			top -= 40;
			$(window).scrollTop(top);
		}
		
	};
		
	this.init();
}

// start the application
admin = new Admin();

});

