// JavaScript Document

function tellverify() {
var themessage = "You are required to complete the following fields: ";
if (document.krause.firstname.value=="") {
themessage = themessage + "  First Name";
}
if (document.krause.lastname.value=="") {
themessage = themessage + "  Last Name";
}
if (document.krause.company.value=="") {
themessage = themessage + "  Company";
}
if (document.krause.address.value=="") {
themessage = themessage + "  Address";
}
if (document.krause.city.value=="") {
themessage = themessage + "  City";
}
if (document.krause.state.value=="") {
themessage = themessage + "  State";
}
if (document.krause.zip.value=="") {
themessage = themessage + "  Zip";
}
if (document.krause.phonenumber.value=="") {
themessage = themessage + "  Phone Number";
}
if (document.krause.faxnumber.value=="") {
themessage = themessage + "  Fax Number";
}
if (document.krause.youremail.value=="") {
themessage = themessage + "  E-mail";
}
if (document.krause.comments.value=="") {
themessage = themessage + "  Comments";
}
if (themessage == "You are required to complete the following fields: ") {
document.krause.submit();
}
else {
alert(themessage);
return false;
   }
}


function dloadverify() {
var themessage = "You are required to complete the following fields: ";
if (document.wpdload.fname.value=="" || document.wpdload.fname.value=="First Name") {
themessage = themessage + "  First Name";
}
if (document.wpdload.lname.value=="" || document.wpdload.lname.value=="Last Name") {
themessage = themessage + "  Last Name";
}
if (document.wpdload.company.value=="" || document.wpdload.company.value=="Company") {
themessage = themessage + "  Company";
}
if (document.wpdload.phone.value=="" || document.wpdload.phone.value=="Phone") {
themessage = themessage + "  Phone Number";
}
if (document.wpdload.state.value=="" || document.wpdload.state.value=="Select State") {
themessage = themessage + "  State";
}
if (document.wpdload.email.value=="" || document.wpdload.email.value=="Email") {
themessage = themessage + "  E-mail";
}
if (document.wpdload.country.value=="" || document.wpdload.country.value=="Country") {
themessage = themessage + "  Country";
}
if (themessage == "You are required to complete the following fields: ") {
document.wpdload.submit();

}
else {
alert(themessage);
return false;
   }
}

function displayWhitePaper() {
	var response = '<h3>Thank You!</h3>';
	response = response + '<p>Thank you for submitting your information</p>';
	response = response +  '<p>Download the white papers by clicking below:</p>';
	response = response +  '<p><a href="downloads/DavesDigestArticle.pdf" target="_blank"><em><strong>What Hard Work Giveth, Nursing Homes Taketh Away</strong></em></a></p>';
	response = response +  '<p>If you have any questions please feel free to call MPS at 1.800.481.5290.</p>';
	document.getElementById('wpdownload').innerHTML = response;
}