// JavaScript Document

/****
* Coming soon links
****/
function comingSoon() {
	alert('This link will be available soon!' + '\n\n' + 'Check back here for updates.');
}


/****
* Validate search form
****/
function validateForm(thisform) {
	with(thisform) {
		if(thisform.type_of_service.selectedIndex == 0) {
			alert('Please select the Type of Service from the drop down.');
			return false;
		}
	}
}
function validateForm2(thisform) {
	with(thisform) {
		if(thisform.type_of_service2.selectedIndex == 0) {
			alert('Please select the Type of Service from the drop down.');
			return false;
		}
	}
}


/****
* Zip input value
****/
function clearInput(thisinput) {
		if(thisinput.value == 'please enter zip') {
				thisinput.value = '';
		} else if(thisinput.value == '') {
				thisinput.value = 'please enter zip';
		} else {
			//nothing
		}
}