
  
function sendEmail (eTitle,eDescription,eHostName,eLink){
	eSubject = "Harold White Millworks Design";
	emailBody = "body=";
	emailSubject = "subject=" + escape(eSubject);
	emailBody += "Hi," + "%0D%0D" + "Look what I found on "+ eHostName + "." + "%0D%0D";
	emailBody += "Title: " + unescape(eTitle) + "%0D";
	emailBody += "Description: " + unescape(eDescription) + "%0D%0D";
	emailBody += eHostName + escape(eLink);
	emailLink  = "mailto:?" + emailSubject + "&" + emailBody;
	
	location.href = emailLink; 
} 


function popup(url) {
	var PopupOptions = 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=1, copyhistory=0, width=900px, height=740px, screenX=50px, screenY=50px';
	Popup=window.open(url, "PopupGallery", PopupOptions);
	if (window.focus) {Popup.focus()}
}

function getSalesRep(id){
	if(id != "-1" && id != "-2"){
	$.get("_getsales.php", { idcounty: id },
	  function(data){
		$("#sales-reps").empty();
		if(data){
			$("#sales-reps-header").html("Your sales representative is");
			$(data).appendTo("#sales-reps");
		}
	  });
	}else{
		$("#sales-reps-header").html("");
		$("#sales-reps").empty();
	}
}