// JavaScript Document

function sf(){document.forms.bid_now.user.focus();}

function check() {
  var ok = true;
  var msg = "The following fields must be filled:\n";
  if (document.forms.bid_now.user.value=='') { ok = false; msg += " - User Name\n"; }
  if (document.forms.bid_now.fax.value=='') { ok = false; msg += " - Your Fax\n"; }
  if (document.forms.bid_now.faxbis.value=='') { ok = false; msg += " - Confirm fax\n"; }
  if (document.forms.bid_now.mail.value=='') { ok = false; msg += " - Your Email\n"; }
  if (document.forms.bid_now.mailbis.value=='') { ok = false; msg += " - Confirm Email\n"; }
  if (document.forms.bid_now.mbid.value=='') { ok = false; msg += " - Max. Bid\n"; }
  if (ok==false) { alert(msg); return false; }
  else {
	  msg = "We have the following problem:\n";
	  if (document.forms.bid_now.fax.value!=document.forms.bid_now.faxbis.value) { ok = false; msg += " - Your Fax confirmation has failed!\n"; }
	  if (document.forms.bid_now.mail.value!=document.forms.bid_now.mailbis.value) { ok = false; msg += " - Your Email confirmation has failed!\n"; }
	  if (ok==false) { alert(msg); return false; }
	  else { return true; }
  }
}