

var wsWmaWebmasterOverviewState = {};


function wsWmaWebmasterOverview(id,block_id) {
	
	wsWmaWebmasterOverviewState.preventClose = true;

	$('#'+block_id).html('<div style="margin-top: 75px;"><center><img src="/images/loading.gif" /></center></div>');
	$('#'+block_id).dialog({
					modal:true,
					width: 606,
					//height: 191,
					resizable: false,
					dialogClass: 'wma_toptendialog'


				});
	var url = "/modules/wsWebmasterAlliance/sections/worldsofttopten/ajaxapplication.php?op=overview_webmaster&uid="+id;
	$.get(url,function(data)
		{
			
			$('#'+block_id).html(data);
			
		$('#'+block_id+', body').click(function() {
				if (wsWmaWebmasterOverviewState.preventClose) {
					return;
				}
				
				$('#'+block_id).dialog("close");
				
			});
			wsWmaWebmasterOverviewState.preventClose = false;
		}
	);
	
	
}


