function contactForm() {
	var holdDiv = document.getElementById("contact-holder");
var contactBtn = document.getElementById("contact-btn");
	if(holdDiv){
	holdDiv.style.display = "block";
contactBtn.style.display = "none";
   } else {
			holdDiv.style.display = "none";
		}
}
function writeItemPageContactForm() {
	document.write("<input type=\"button\" value=\"Submit Your Own Review\" onClick=\"contactForm();\"><div id=\"contact\"></div>");
} //-->

