function submitForm() {

 document.forms[0].submit();
}

function goBack() {

 history.back();
}

function cartDelete(cartIndex) {
  
 document.forms[0].cartMode.value='delete';
 document.forms[0].cartIndex.value=cartIndex;
 document.forms[0].submit();
}

function checkVoucher() {

 document.forms[0].voucher.checked=true;
}

/**
 * Proceed to the checkout page from the cart page
 */
function proceedToCheckout(sessionID) {
 
 if (document.forms[0].voucher.checked) {
//  document.forms[0].action='index.php?pageType=voucher&'+sessionID;// MM
  document.forms[0].action='/gutschein';// MM
 } else {
//  document.forms[0].action='index.php?pageType=checkout&'+sessionID;// MM
  document.forms[0].action='/kasse';// MM
 }
 document.forms[0].submit();
}

/**
 * Submit the voucher form
 */
function submitVoucher() {
 document.forms[0].submit();
}

/**
 * Submit the checkout form
 */
function submitCheckout() {
 document.forms[0].submit();
}

/**
 * Opens a popup window with the AGB
 */
function agb()
{
 F1=open(
  "agb",
  "Fenster1",
  "scrollbars=yes,width=500,dependent=yes,screenX=20,screenY=20,resizable=yes"
 );
}
