/* Privacy Policy */

Priv_div = document.createElement("div");
Priv_div.className = "popupDiv";
Priv_idiv = document.createElement("div");
Priv_idiv.className = "inner";
Priv_div.appendChild(Priv_idiv);
Priv_h3 = document.createElement("h3");
Priv_h3.innerHTML = "Our Privacy Policy";
Priv_idiv.appendChild(Priv_h3);
Priv_p = document.createElement("p");
Priv_p.innerHTML = "Our privacy policy is simple: we do not share your information with anyone without your permission. Due to government regulations we cannot fax or email copies of your tax return to anyone, not even you. Should you need a copy of your tax return you will need to pick it up in person or request that we mail it to you. We regret this inconvenience, but we do not make the rules.";
Priv_idiv.appendChild(Priv_p);
fixStyle(Priv_idiv);

function displayPrivacy() {
	shade();
	bigDiv.appendChild(Priv_div);
	addEvent(bigDiv, "click", removePrivacy);
}
function removePrivacy() {
	bigDiv.removeChild(Priv_div);
	shadeOff();
	removeEvent(bigDiv, "click", removePrivacy);
}

