/* 
 * Copyright (C) 2011  by W-U-S.net <http://www.w-u-s.net>
 * @version $Id: script.js 559 2011-06-30 11:19:31Z W-U-S_um $
 */

function show_categorie(id, level) {
  alert("Kategorie mit der ID = " + id + " und Level " + level + " wird in DIV.main_div angezeigt!");  
}

function newsletter_order() {
  /*
  with(document) {
    if(getElementById("main_div"))
      getElementById("main_div").innerHTML = "<h1 style='color:red'>neuer Inhalt</h1>";
      else alert("Die ID(main_div) gibt es nicht");
  }
  */
  $.post("contents/template/boxes/newsletter_order.php", $("form").serialize(), function(data) {$('#main_div').html(data)});    
}


