// Send File By Email Routine


function showSend(which){
screenObj = document.getElementById('emailscreen');
sendObj = document.getElementById(which + 'content');
isendObj = document.getElementById('i' + which + 'content');
screenObj.style.display="block";
sendObj.style.display="block";
isendObj.style.display="block";
}

function hideSend(which){
screenObj = document.getElementById('emailscreen');
sendObj = document.getElementById(which + 'content');
isendObj = document.getElementById('i' + which + 'content');
screenObj.style.display="none";
sendObj.style.display="none";
isendObj.style.display="none";
}

function showSentStatus(pdfcount){
	if(pdfcount > 0){
	sentmsg = pdfcount + " PDF files were found and emailed to you. Please check any junk or spam folders if you do not see it.";
	}else{
	sentmsg = "We\'re Sorry. No available information was found for the selected criteria.<br>Please try again or email us from our contact page.";
	}
	document.getElementById("sentmessage").innerHTML = sentmsg;
	document.getElementById("emailscreen").style.display = "block";
	document.getElementById("sentstatus").style.display = "block";
}


function hideSentStatus(){
document.getElementById("emailscreen").style.display = "none";
document.getElementById("sentstatus").style.display = "none";
}
