// JavaScript Document

function validate() {

	var error = 0;
	
	if( document.contact.firstname.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.lastname.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.company.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.email.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.address1.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.city.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.zip.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.phone.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.comments.value.length == 0 ) {
		error = 1;	
	}
	
	if( error == 1 ) {
		alert("Please complete all of the required fields before continuing.");
		return false;
	} else {
		return true;
	}
	
	return false;
	
}



function validateDVD() {

	var error = 0;
	
	if( document.contact.firstname.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.lastname.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.company.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.email.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.address1.value.length == 0 ) {
		error = 1;	
	}
		
	if( document.contact.city.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.zip.value.length == 0 ) {
		error = 1;	
	}
	
	if( document.contact.phone.value.length == 0 ) {
		error = 1;	
	}
	
	if( error == 1 ) {
		alert("Please complete all of the required fields before continuing.");
		return false;
	} else {
		return true;
	}
	
	return false;
	
}