// JavaScript Document
var required = -7;

function requiredCheck(text,label) {
	if(document.getElementById(text).value ==	"") 
	{
		$(label).setStyle( {display: 'block' } );
	}
	else
	{
		$(label).setStyle( {display: 'none' } );
		required = required + 1;
		
			if(required >= 0) 
			{
				$('submit1').setStyle( {display: 'block' } );
			}
	}
}

function math() {
	var quantity = document.getElementById('quantity').value * 1;
	var subtotal = quantity * 100;
	var other = document.getElementById('other').value * 1;
	var total = ((subtotal + other) * 1);
	
	document.getElementById('subtotal').value =  subtotal;
	document.getElementById('total').value = total;
}


   var http_request = false;
   function makePOSTRequest(url, parameters) {
      http_request = false;
      if (window.XMLHttpRequest) { // Mozilla, Safari,...
         http_request = new XMLHttpRequest();
         if (http_request.overrideMimeType) {
         	// set type accordingly to anticipated content type
            //http_request.overrideMimeType('text/xml');
            http_request.overrideMimeType('text/html');
         }
      } else if (window.ActiveXObject) { // IE
         try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (e) {
            try {
               http_request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {}
         }
      }
      if (!http_request) {
         alert('Cannot create XMLHTTP instance');
         return false;
      }
      
      http_request.onreadystatechange = alertContents;
      http_request.open('POST', url, true);
      http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
      http_request.setRequestHeader("Content-length", parameters.length);
      http_request.setRequestHeader("Connection", "close");
      http_request.send(parameters);

   }

   function alertContents() {
      if (http_request.readyState == 4) {
         if (http_request.status == 200) {
            //alert(http_request.responseText);
            result = http_request.responseText;
            document.getElementById('auctionborder').innerHTML = result;            
         } else {
            alert('There was a problem with the request.');
         }
      }
   }
   
   function get(obj) {
      var poststr = "name=" + encodeURI( document.getElementById("name").value ) +
                    "&wphone=" + encodeURI( document.getElementById("wphone").value )+
                    "&mphone=" + encodeURI( document.getElementById("mphone").value )+
                    "&email=" + encodeURI( document.getElementById("email").value )+
                    "&email2=" + encodeURI( document.getElementById("email2").value )+
                    "&address=" + encodeURI( document.getElementById("address").value )+
                    "&city=" + encodeURI( document.getElementById("city").value )+
                    "&state=" + encodeURI( document.getElementById("state").value )+
                    "&zip=" + encodeURI( document.getElementById("zip").value )+
                    "&quantity=" + encodeURI( document.getElementById("quantity").value )+
                    "&other=" + encodeURI( document.getElementById("other").value )+
                    "&total=" + encodeURI( document.getElementById("total").value );
      makePOSTRequest('action.php', poststr);
   }
