function postBid(){
	if($("input#bid").val()==""){ 
		bid = 0; } else { bid = parseInt($("input#bid").val()); }
	var minBid = parseInt($("input#minBid").val());
	
  	$("label#bid_errorNull").hide();
  	$("label#bid_error").hide(); 
	if (bid==0) {  
  		$("label#bid_errorNull").show();  
  		$("input#bid").focus();
		event.returnValue=false; 
  		return false;  
	}
	if (bid<minBid) {  
  		$("label#bid_error").show();  
  		$("input#bid").focus(); 
		event.returnValue=false; 
  		return false;  
	}
	var posterNumber = $("input#posterNumber").val();  
	var auctionNo = $("input#auctionNo").val();  
	var dataString = 'Action=Bid&bid='+ bid + '&posterNumber=' + posterNumber + '&auctionNo=' + auctionNo;
	$.ajax({  
      type: "POST",  
      url: "DESIGN/Auctions/place_bid.php",  
      data: dataString,  
      success: function() {
		$('#bidForm').hide(); 
        //$('#bidDiv').html("<div id='message'>asasd</div>");  
        $('#message').hide()  
        .fadeIn(1500);
		$('#posterBasket').load('DESIGN/Auctions/basket.php?Action=Some');
      },
	  failure: function() {
		  alert("failure");
	  }
    });  
	event.returnValue=false; 
	return false;
}

function deleteBid(index){
	 $('#posterBasket').load('DESIGN/Auctions/basket.php?Action=DeleteBid&index=' + index);
}
function deleteBidOrder(index){
	 document.location.href='page.php?ID=1469&Action=DeleteBid&index=' + index;
}	
function deleteFromOrder(index){
	 document.location.href='page.php?ID=1469&Action=delFromBasket&index=' + index;
}		
function showDialog(url){
		$( "#dialog" ).dialog( "option", "title", 'Place your bid' );
		$("#dialog").load(url);
		$('#dialog').dialog('open');
  		$("input#bid").focus();  
  }

function cancelBid(index){
	$('#dialog').dialog('close');
}		
function checkForm(formCh){
	alertStr = "";
	if(formCh.Email_adres.value==""){ alertStr+= "Please enter your email address\n"; }
	if(formCh.Voornaam.value==""){ alertStr+= "Please enter your initials or first name\n"; }
	if(formCh.Achternaam.value==""){ alertStr+= "Please enter your last name\n"; }
	if(formCh.adres.value==""){ alertStr+= "Please enter your address \n"; }
	if(formCh.Postcode.value==""){ alertStr+= "Please enter your zipcode\n"; }
	if(formCh.Woonplaats.value==""){ alertStr+= "Please enter your city\n"; }
	if(formCh.LandNaam.value==""){ alertStr+= "Please enter your country\n"; }
	if(formCh.cap.value==""){ alertStr+= "Please enter the verification number\n"; }
	if(formCh.voorwaarden.checked==""){ alertStr+= "Please agree to the terms and conditions\n"; }
	formCh.submit();
	if(alertStr==""){
	} else {
		alert(alertStr);
	}
}
function deleteFromBasket(index){
	 $('#posterBasket').load('DESIGN/Auctions/basket.php?Action=delFromBasket&index=' + index);
}
function loadAftersalesInBasket(posterNum,auctionNum,price){
	$('#posterBasket').load('DESIGN/Auctions/basket.php?Action=addToBasket&type=buy&product=poster&auction=' + auctionNum + '&number=' + posterNum + '&price=' + price);
	$( "#dialog" ).dialog( "option", "title", 'Continue or place bid(s)?' );
	$("#dialog").load('DESIGN/Auctions/goShopMessage.php');
	$('#dialog').dialog('open');
}
function loadCatalogueInBasket(auctionNum,price){
	 document.location.href='page.php?ID=1469&Action=addToBasket&type=buy&product=catalogue&auction=' + auctionNum + '&price=' + price;
	$( "#dialog" ).dialog( "option", "title", 'Continue or finalize your order?' );
	$("#dialog").load('DESIGN/Auctions/goShopMessage.php');
	$('#dialog').dialog('open');
 }
 function langChange(divName){
	 elmEN = document.getElementById(divName + "EN");
	 elmNL = document.getElementById(divName + "NL");
	 if(elmEN.style.display=="none"){
		 elmEN.style.display="block"
		 elmNL.style.display="none"
	 } else {
		 elmNL.style.display="block"
		 elmEN.style.display="none"
	 }
 }
<!--
		function MM_validateForm() { //v4.0

  var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { 
  	test=args[i+2]; 
	val=MM_findObj(args[i]);
	alertObj=MM_findObj("alert"+ args[i]);
	doubleObj=MM_findObj(args[i] + "_2");
	alertVal=alertObj.value;
    if (val) { 
	  nm=val.name; 
	  if ((val=val.value)!="") {
		  if (test.indexOf('isEmail')!=-1) { 
		  	p=val.indexOf('@');
			if (p<1 || p==(val.length-1)) errors+='- '+alertVal+' \n';
		  }  else if (test!='R') { 
					num = parseFloat(val);
					if (isNaN(val)) errors+='- '+alertVal+' \n';
					if (test.indexOf('inRange') != -1) { 
					  p=test.indexOf(':');
					  min=test.substring(8,p); max=test.substring(p+1);
					  if (num<min || max<num) errors+='- '+alertVal+' \n';
					} 
		  } 
	  } else if (test.charAt(0) == 'R') errors += '- '+alertVal+' \n'; 
   }
  } 
  if (errors) alert(errors);
  document.MM_returnValue = (errors == '');
}
function MM_validatePastryForm() { //v4.0

  var i,p,q,nm,test,num,min,max,errors='',args=MM_validatePastryForm.arguments;
  for (i=0; i<(args.length-2); i+=3) { 
  	test=args[i+2]; 
	val=MM_findObj(args[i]);
	alertObj=MM_findObj("alert"+ args[i]);
	doubleObj=MM_findObj(args[i] + "_2");
	alertVal=alertObj.value;
    if (val) { 
	  nm=val.name; 
	  if ((val=val.value)!="") {
		  if (test.indexOf('isEmail')!=-1) { 
		  	p=val.indexOf('@');
			if (p<1 || p==(val.length-1)) errors+='- '+alertVal+' \n';
		  }  else if (test!='R') { 
					num = parseFloat(val);
					if (isNaN(val)) errors+='- '+alertVal+' \n';
					if (test.indexOf('inRange') != -1) { 
					  p=test.indexOf(':');
					  min=test.substring(8,p); max=test.substring(p+1);
					  if (num<min || max<num) errors+='- '+alertVal+' \n';
					} 
		  } 
	  } else if (test.charAt(0) == 'R') errors += '- '+alertVal+' \n'; 
   }
  } 
  if (errors) alert(errors);
  document.MM_returnValue = (errors == '');
}
function toggleDivExt(objectID){
	expObj = document.getElementById(objectID);
	linkObj = document.getElementById("leesVerderLink");
	if (expObj.style.display=="block"){
		expObj.style.display = "none";
		linkObj.style.display = "";
	} else {
		expObj.style.display = "block"; 
		linkObj.style.display = "none";
	}
}
function toggleDivExt2(objectID){
	expObj = document.getElementById(objectID);
	linkObj = document.getElementById("leesVerderLink2");
	if (expObj.style.display=="block"){
		expObj.style.display = "none";
		linkObj.style.display = "";
	} else {
		expObj.style.display = "block"; 
		linkObj.style.display = "none";
	}
}
function toggleDiv(objectID){
	expObj = document.getElementById(objectID);
	if (expObj.style.display=="block"){
		expObj.style.display = "none";
	} else {
		expObj.style.display = "block"; 
	}
}

	function setBackgroundPos(){
		if (parseInt(navigator.appVersion)>3) {
		 if (navigator.appName=="Netscape") {
		  winW = window.innerWidth;
		  winH = window.innerHeight;
		 }
		 if (navigator.appName.indexOf("Microsoft")!=-1) {
		  winW = document.body.offsetWidth;
		  winH = document.body.offsetHeight;
		 }
		}
		if(winW<933){ winW = 932; }
		leftPos = (winW / 2) - (1940 / 2);
		document.body.style.backgroundPosition =  leftPos + "px 0px";
	}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

//  End -->
