/* CUSTOM JAVASCRIPT */

$(function(){
  $(".MenueLevel1 a[target=infoWindow]").click(function(){
    window.open("/" + $(this).attr("title"), "InfoWindow", "width=850px,height=700px,scrollbars=yes,resizable=yes,left=" +
    ((screen.width -850) / 2)+",top=" + ((screen.height - 700) / 2) + "").focus();

    return false;
  });
});