/*
 * JavaScript Datei - functions.js - 
 * 
 * Allgemeine JS Funktionen
 * 10.02.07 kunze@celos.de
 *
 */
  

/* 
 *
 * submitContentPage
 *
 * Führt einen Submit aus.  
 * 
 * action = Seite an welche das Formular übergeben werden soll.
 *
 */
function submitContentPage(action) {
  document.form.action = action;
  document.form.method="post";
  document.form.submit();
}


