function Confirm_Submission_Form(text) {
	return confirm("Achtung! "+text+"\n\nFortfahren?");
}

function AreThereScrollbars() {
  var docHeight = $(document).height();
  var scroll    = $(window).height() + $(window).scrollTop();
  alert ("message");
  return (docHeight == scroll);
}

