// Incremental list of all possible Textfunction random_text( textHolder ){ 	var random_text = new Array( 		"Among available online management reports (accessible with a secure login) are the Medicare 201, 997 acknowledgements, and all remittance reports. All reports are archived and always available to download.",		"Gaffey + Associates can provide your monthly Medicare PS&R summary reports electronically.",		"With one click the Gaffey + Associates Remittance solution can make all your commercial payers' remittance advice available.",		"Gaffey + Associates can process 1500, UB92, 837I and 837P claims with our GEMS Claim Processing applications.",		"With the GEMS application, Gaffey + Associates can upload an 837 file into the system. This feature can help make your claim processing easier to work with.",		"Gaffey + Associates can customize your software to correct routine claim errors and reduce manual claim editing, helping to get your claims accepted the first time.",		"Gaffey + Associates offers an easy to use Claim History feature that provides an immediate snapshot of your claim activity.",		"Using the GEMS application, you can download or retrieve Claim Status and other Event Notes for posting to patient records.",		"With Gaffey + Associates Remittance solution, your Remittance reports and posting data are archived and can be made available for you to download at any time.",		"Gaffey + Associates Customer Service Representatives are always available to help answer your questions and meet your Medical Billing requests. We are rated number one in customer satisfaction.",		"Gaffey + Associates keeps your data secure and protected at all times in our state-of-the-art data center that provides continuous up-time of our services."		);	// Create a random number with limits based on the number	// of possible random text strings	var random_number = Math.floor( Math.random() * random_text.length );	// Write out the random text to the browser	textHolder.innerHTML = random_text[ random_number ];};