/* Contact Box */

function showContactBox(direction) {
	var theTargetDiv=document.getElementById("contactUsPopUp");
	if(direction==1) {
		theTargetDiv.style.display="";
	} else {
		theTargetDiv.style.display="none";
	}

}