// JavaScript Document

function sendEmail(){
	document.location.href='mailto:' + email; 	

}
function getMap(){
		
	document.location.href='http://maps.google.com/maps?oi=map&q='+address+','+city+','+state+' '+zip;
	
}

function deleteCookie(name) {
  if (getCookie(name)) {
    document.cookie = name+ "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
}