 function popup (url) {
	fenster=window.open(url, "_blank", "width=405,height=530,status=yes,scrollbars=yes,resizable=yes");
	fenster.focus();
}

$(document).ready(function() {		
		
		$(".clickMap").toggle(function() {
            $("#dynamicMap").remove();
            var objID = $(this).attr("rel");

            $(this)              
              .parent("div")
              .after('<iframe id="dynamicMap" scrolling="no" frameborder="0" src="oiplug/iframegmap.php?POSFROM='+objID+'" height="220" width="678"><p>Your browser does not support iframes.</p></iframe>');
        }, function() {
          $("#dynamicMap").remove();
        });				
});
