function adjustColumns(id,target) {
	height1 = document.getElementById(id).offsetHeight;
height2 = document.getElementById(target).offsetHeight;
	if(height1 > height2) {
		var isNS = 0;
		var isIE = 0;
		var isOtherBrowser = 0;
			if (navigator.appName.indexOf('Microsoft Internet Explorer') != -1) { isIE = 1};
			if (navigator.appName.indexOf('Netscape') != -1) { isNS = 1};
			if(isIE) {
			document.getElementById(target).style.height = (height1  - 50)  + "px" ;
			}
			else {
			document.getElementById(target).style.height = (height1  - 10) +  "px" ;
			}
		}
}

quotes = new Array();
quotes[0] = "Great people. Great organizations. Great information. And it's fun, too!";
quotes[1] = "I joined HREF a year ago and have been very impressed with the programs and networking.  Any Twin Cities area HR leader who is not a member of HREF is missing out.";
quotes[2] = "HR Executive Forum provides the strategic level discourse on leading edge HR thinking that I can't find elsewhere.  It helps me step out of the day-to-day demands to think more broadly about important HR challenges.";
quotes[3] = "HR Executive Forum is a well-run organization that has been a valuable source of ideas and new perspectives on many strategic HR issues.";

quotes[4] = "I love attending the HR Executive Forum.  The meetings keep me up-to-date on current topics.";

quotes[5] = "A bright light in the reflective process of taking time to think and consider new alternatives has been the  meetings of HR Executive Forum.";
quotes[6] = "I have found HR Executive Forum to provide an agenda of valuable programs targeted at the Senior HR role.";
quotes[7] = "If you are looking for good peer networking combined with current and stimulating topics, look to HR Executive Forum for your educational programs! ";
quotes[8] = "HR Executive Forum is a great place to network and share best practices with other HR Professionals.";
quotes[9] = "It's great to get into a room of people with an expert up front and have a challenging intellectual and practical dialogue with peers.";
quotes[10] = "Insights gained via my participation with HREF enable me to contribute strategically to our businesses' growth.";


quoteAuthor = new Array();
quoteAuthor[0] = "Thomas H. Bodin, President, O.I. Partners - Organizational Innovations, Inc.";
quoteAuthor[1] = "Kim O'Neil, Director of Human Resources, Twin Cities Orthopedics";
quoteAuthor[2] = "Tom Traub, VP, Human Resources, CHS, Inc.";
quoteAuthor[3] = "Pete Miller, Vice President - HR, Connexus Energy";
quoteAuthor[4] = "Betty Potasnak, VP, Human Resources, North American Membership Group";
quoteAuthor[5] = "W.F. \"Duke\" Fuehrer, PhD, Program Director, Bethel University";
quoteAuthor[6] = "Leo Johnson, Director, Org. Effectiveness, HB Fuller Company";
quoteAuthor[7] = "Roger W. Elias, RW Elias & Associates, LLC";
quoteAuthor[8] = "Kara Sime, VP, Human Resources, Bolt Industries, LLC";
quoteAuthor[9] = "Annette Thomson, HR, Best Buy Company";
quoteAuthor[10] = "Mary Cay Carsello, Sr Director, Human Resources, Thomson West";




counter = Math.round(Math.random()*10);


function validate() {
errors = "";

	if (document.theForm.firstName.value == "") {
	errors += "Enter in your first name.\n";
	}
	if (document.theForm.lastName.value == "") {
	errors += "Enter in your last name.\n";
	}
	if (document.theForm.title.value == "") {
	errors += "Enter in your title.\n";
	}
	if (document.theForm.company.value == "") {
	errors += "Enter in your company name.\n";
	}
	if (document.theForm.email.value == "") {
	errors += "Enter in your email address.\n";
	}

	if (document.theForm.phone.value == "") {
	errors += "Enter in your phone number.\n";
	}
	if (errors != "") {
	alert("Please fill in the required information:\n\n" + errors);
	return false;
	}
	else {
	return true;
	}
}

