var advMenu = false;
			var emailMenu = false;
			function showHideSearch() {
				if (advMenu == false) {
					document.getElementById("searchForm").style.height = "22em";
					document.getElementById("simpleSearch").style.display = "none";
					document.getElementById("advancedSearch").style.display = "block";
					advMenu = true;
				} else {
					document.getElementById("searchForm").style.height = "7em";
					document.getElementById("simpleSearch").style.display = "block";
					document.getElementById("advancedSearch").style.display = "none";
					advMenu = false;
				}
			}	

			function showHideEmail() {
				if (emailMenu == false) {
					document.getElementById("emailForm").style.display = "block";
					emailMenu = true;
				} else {
					document.getElementById("emailForm").style.display = "none";
					emailMenu = false;
				}
			}

			function quote() {
				
				var quotes = new Array();
				quotes[0] = "<p>&ldquo;We have seen radiologist read times reduced by 30 seconds per case...this equates to over eight weeks of physician time [per year].&rdquo;</p><p class=\"by\">Ron Cornett<br />PACS Administrator<br />Radiology Ltd.<br />Tucson, AZ</p>";
 


quotes[1] = "<p>&ldquo;Print2PACS has been tremendously helpful in reducing the steps to get our bone density reports to referring physicians.&rdquo;</p><p class=\"by\">David Lucia<br />PACS Administrator<br />Adventist Medical Center<br />Portland, OR</p>";


quotes[2] = "<p>&ldquo;Using PacsSCAN we find our oncology review conferences are certainly smoother and faster.&rdquo;</p><p class=\"by\">Charlie Owens<br />PACS Administrator<br />UT Medical Center<br />Knoxville, TN</p>";


quotes[3] = "<p>&ldquo;...it takes a whole boatload of faxes off the paper trail and makes the documents more secure.&rdquo;</p><p class=\"by\">Kevin Kirsch<br />PACS Administrator<br />Poudre Valley Hospital<br />Fort Collins, CO</p>";

quotes[4] = "<p>&ldquo;PacsSCAN is a true &lsquo;plug and play&rsquo; solution. We now scan orders, allergy hx, contrast administered, and any other relevant documents. Our radiologists love it.&rdquo;</p><p class=\"by\">Gayle Thompson-Smillie<br />Radiology Administrator<br />Washington Hospital Center<br />Washington, DC</p>";


quotes[5] = "<p>&ldquo;We currently have over 30 PACS workstations with document scanners and the PacsSCAN software installed. It works beautifully with our PACS system.&rdquo;</p><p class=\"by\">Tracy Wineland<br />PACS Specialist<br />Mount Carmel Health Systems<br />Columbus, OH</p>";

			var quoteSize = quotes.length - 1;
			var i = Math.round(quoteSize*Math.random());
			document.write(quotes[i]);

			}