function nextStep() {
	if (document.send_form.country_list.value=='') {
		alert('Select the country');
		document.send_form.country_list.focus();
		return;
	}
	if (document.send_form.local_number.value=='') {
		alert('Fax number is empty');
		document.send_form.local_number.focus();
		return;
	}
	if (document.send_form.name.value=='') {
		alert('Name field is empty');
		document.send_form.name.focus();
		return;
	}	
	if (document.send_form.email.value=='') {
		alert('Email field is empty');
		document.send_form.email.focus();
		return;
	}	
	document.getElementById("step1").style.display="none";
	document.getElementById("step2").style.display="block";
}

function prevStep() {
	document.getElementById("step1").style.display="block";
	document.getElementById("step2").style.display="none";
}
