/***********************************************/
/* popup function                              */
/***********************************************/ 

function popUp(URL) {
	window.open(URL, "popup", 'channelmode=0,directories=0,dependant=0,personalbar=0,dialog=1,titlebar=0,status=0,toolbar=0,minimizable=0,scrollbars=0,location=0,menubar=0,resizable=0,width=365,height=340,left=329.5,top=214');
}

function checkform() {
	if ( document.contact.ResName.value == "" && document.contact.ResEmail.value == "" ) { 
		window.location.href="./contact_response.html#all_err";
		return false; 
	}

	else if ( document.contact.ResName.value == "" ) { 
		window.location.href="./contact_response.html#name_err";
		return false; 
	}

	else if ( document.contact.ResEmail.value == "" ) { 
		window.location.href="./contact_response.html#email_err";
		return false; 
	}

	else if ( document.contact.ResName.value != "" && document.contact.ResEmail.value != "" ) { 
		window.location.href="./contact_response.html#thank_you";
		return true; 
	}

	return true;
}

