function map(address){
	var w = 550;
	var h = 450;

	$('body').append('<div id="map" style="display:none;width:100%;align:center;"><iframe src="./map/map.php?address='+address+'&x='+(w)+'&y='+(h)+'" id="map_url" style="width:'+w+'px;height:'+h+'px;border:0;" scrolling="no"/><br/><img src="./map/btnClose.gif" onclick="closeMap();"/></div>');
	$('#map').css('opacity',0.9);
	$('#map').css('background','#000000');
	$('#map').css('position','absolute');
	$('#map').css('top',0);
	$('#map').css('left',0);
	$('#map').css('height',$(document).height());
	$('#map').css('z-index',9500);
	
	$('#map').css('padding-top',($(window).height() / 2) - (h / 2));
	$('#map').css('padding-left',($(window).width() / 2) - (w / 2));
	
	window.scrollTo(0,0);
	
	$('#map').show();
}

function closeMap(){
	$('#map').remove();
}
