$(document).ready(function(){
	/*if($('#coord_popup').size()) {
		$("#coord_popup").dialog({
			autoOpen: true,
			modal: true,
			resizable: false,
			title: 'BTS Coordinator',
			height:600,
			width:550,
			buttons: {
				"Close": function() {
					$(this).dialog("close");
				}
			},
			overlay: {
				opacity: 0.5,
				background: "black"
			}
		});		
	}*/
	
	$('#close_coord').click(function() {
		$('#coord_popup').hide();
		return true;
	});
	
	$('.coord_link').click(function() {
		if($(this).attr('href') === 'javascript:;') {
			$('#coord_popup').show();
		}
		return true;
	});
});
