// quick n dirty, no re-usability
// hacks into popover.js
function showmap(src, w, h) {
	$("#po_frame,#po_img,#po_prev,#po_next").remove();
    $("#popover").append('<iframe id="po_frame" src="'+src+'" scrolling="no" frameborder="0" style="z-index:101;"></iframe>');
    $("#po_frame").hide();
     
    $("#overlay").show();
    $("#popover,#po_frame").fadeIn(350, function() {
    	// don't call popover_position(), just hard code
    	var doc = $('body');
    	$("#po_frame").css({
    		width	: w,
    		height	: h
    	});
    	var frame = $("#po_frame");
	    $("#popover").css({
	        width   : frame.width(),
	        height  : frame.height(),
	        left    : ((doc.width() - frame.width())/2),
	        top     : 190
	    });
    });
    $("#overlay,#po_close").click(popover_hide);
}
