function hiddenIframe(pageUrl){
	//$('.hiddenIframe').each(function(){ $(this).remove(); });
	//$('body').append('<iframe name="hiddenIframe" id="hiddenIframe" class="hiddenIframe" frameborder="0" style="overflow: hidden; width: 300px; height: 300px;" src="'+pageUrl+'"></iframe>');
	
	window.open(pageUrl,"Window1", "menubar=no,width=320,height=100,toolbar=no");
}

function printMap(){
	mapDiv = $('#map').html();
	
	console.log(mapDiv);
	
	$('.hiddenIframe').each(function(){ $(this).remove(); });
	
	$('body').append('<iframe id="printMapIframe" class="hiddenIframe" frameborder="1" style="overflow: hidden; width: 600; height: 600;"></iframe>');
	$('#printMapIframe').append(mapDiv);
}