//###############################################################################
//# bugrim_v4.js - Released 09 September, 1999. (v1.00)
//# Author: Alexander Schmidt - (dschinn@snafu.de)
//# Copyright 1999 Alexander Schmidt - All Rights Reserved.
//#
//# Remember to upload in ASCII mode!
//###############################################################################
var ns = (document.layers) ? true:false
var ie = (document.all) ? true:false

function AS_submitForm(theForm) {
   var strForm
   var strCommand

   if (ie) {
	strForm = 'document.all[\'' + theForm + '\']';
   } else {
	strForm = 'document.'+theForm;
   }
   if (eval(strForm) != null) {
	strCommand = strForm + '.submit()';
   } else {
	strCommand = alert('Die Funktion "submit()" kann zur Zeit nicht ausgeführt werden.\nBitte versuchen Sie es später noch einmal.');
   }
   return eval(strCommand);
}

function AS_resetForm(theForm) {
   var strForm
   var strCommand

   if (ie) {
	strForm = 'document.all[\'' + theForm + '\']';
   } else {
	strForm = 'document.'+theForm;
   }
   if (eval(strForm) != null) {
	strCommand = strForm + '.reset()';
   } else {
	strCommand = alert('Die Funktion "reset()" kann zur Zeit nicht ausgeführt werden.\nBitte versuchen Sie es später noch einmal.');
   }
   return eval(strCommand);
}

