// JavaScript Document

function checkform() {
	
	
	if (document.getElementById('dwfrm_storelocator_address').value == "" || document.getElementById('dwfrm_storelocator_address').value == 0){
		document.getElementById('error').innerHTML = "Please enter a Street Address, City, and State OR Zip/Post Code";
		document.getElementById('dwfrm_storelocator_address').style.background = "#FFFFCF";
		document.getElementById('dwfrm_storelocator_address').focus();
		return false; 
	}
	
	return true; 
	
	
	
}