/* Copyright OHA. ALL RIGHTS RESERVED */
// JavaScript Document
	
// CLEAR SEARCH TEXT
function clearText(thefield){if (thefield.defaultValue==thefield.value)thefield.value = "";}

function OpenClose(Event) {
    var div = document.getElementById(Event);
    if (div.style.display != 'none' ) {
        div.style.display = 'none';
    }
    else {
        div.style.display = '';
    }
}

function DelphiaQuotes(){
	Total = 7	// total number of quotes and authors
	var RN = Math.floor(Math.random()*Total);
	var Quote = new Array();
		Quote[0] = "Delphia received a unanimous vote, and they have delivered a comprehensive solution that&acute;s exceeded our expectations."
		Quote[1] = "Kathleen absolutely went the extra mile to ensure we hit our deadlines.  There were times when it was touch-and-go, but we were successful in all areas."
		Quote[2] = "Kathleen should be nominated for sainthood. Her help and support got us through a payroll crisis."
		Quote[3] = "Thank you so much for the fabulous job you did conducting our training! You did a great job keeping everyone involved, answering questions, and keeping things moving along."
		Quote[4] = "I cannot tell you how excited we are with our HR System.  I marvel every day at how well everyone is using it."
		Quote[5] = "When I look back one year ago, I never would have imagined the progress we have made.  You are the secret to Sage's success!"
		Quote[6] = "HR Actions is adaptable and friendly to both users and the environment&hellip; thus it has been well-received by our users."
		Quote[7] = ""
		Quote[8] = ""
		Quote[9] = ""
		Quote[10] = ""
	var Author = new Array();
		Author[0] = "Jesse R. Jones<br>CEO<br>Ohio IT Alliance"
		Author[1] = "Stuart Reif<br>Human Resource Director<br>Royal Tire, Inc."
		Author[2] = "Chris Fischer<br>CEO<br>Chris Fischer Productions Inc"
		Author[3] = "Carrie A. Zubke<br>Director of Human Resources<br>United Bancor, Ltd."
		Author[4] = "Kerry L. Pedraza<br>Director of Human Resources<br>Clark County Dept. of Job & Family Services"
		Author[5] = "Kerry L. Pedraza<br>Director of Human Resources<br>Clark County Dept. of Job & Family Services"
		Author[6] = "Erick T. Roosa<br>Training Manager of Human Resources<br>Mohonk Mountain House"
		Author[7] = ""
		Author[8] = ""
		Author[9] = ""
		Author[10] = ""
	document.write("<span class=Quote>&ldquo;" + Quote[RN] + "&rdquo;</span><div class=Author>" + Author[RN] + "</div>");
}

function UsabilityQuotes(){
	Total = 8	// total number of quotes and authors
	var RN = Math.floor(Math.random()*Total);
	var Quote = new Array();
		Quote[0] = "No risk... with Delphia you&rsquo;re guaranteed a winner!"
		Quote[1] = "Again I thank you. This program is great! I can now print and mail all of my letters in one day instead of 3-4 days."
		Quote[2] = "Since our web site went live, we have received so many compliments - I am so excited!"
		Quote[3] = "Delphia didn&rsquo;t just help us develop a usable web site but helped transform the organization&rsquo;s thinking."
		Quote[4] = "I am eager to work with Delphia in the future.  It&acute;s rare to partner with a firm that delivers exceptional quality of work while being such a great pleasure to work with."
		Quote[5] = "Delphia didn&rsquo;t do everything we asked, they did everything we <i>needed</i>.  They did a great job of understanding our needs and delivering comprehensive solutions."
		Quote[6] = "Some experts talk about theory and write complicated reports but Delphia is very good at making practical, usable recommendations."
		Quote[7] = "The services they rendered exceeded my expectations.  I highly recommend Delphia Consulting&acute;s Usability Engineering Services."
		Quote[8] = ""
		Quote[9] = ""
		Quote[10] = ""
	var Author = new Array();
		Author[0] = "Jeff Fisher<br>Chemical Abstracts"
		Author[1] = "Hiram A. LaGree<br>Collection Coordinator<br>AirNet"
		Author[2] = "Shari Farkas<br>Acuity Solutions, LLC"
		Author[3] = "Greg Duncan<br>eGovernment Manager<br>City of Las Vegas"
		Author[4] = "Tracy Solarek<br>Director of eMarketing<br>Thomson Delmar Learning"
		Author[5] = "Greg Duncan<br>eGovernment Manager<br>City of Las Vegas"
		Author[6] = "Greg Duncan<br>eGovernment Manager<br>City of Las Vegas"
		Author[7] = "Greg Duncan<br>eGovernment Manager<br>City of Las Vegas"
		Author[8] = ""
		Author[9] = ""
		Author[10] = ""
	document.write("<span class=Quote>&ldquo;" + Quote[RN] + "&rdquo;</span><div class=Author>" + Author[RN] + "</div>");
}
//-->