function awardText(thisAward){
	
	theObj = document.getElementById('awardText');	
	
	var script = '';
	
	//the actual text here...
	if (thisAward == 'wsp')
	{	
		script = '<em>Spectrum Awards</em><blockquote>Sponsored by the Wisconsin School Public Relations Association, Spectrum Awards ';
		script += 'celebrate the best in overall school district communications. The work we have done for Wausau School District, a ';
		script += 'client for over 10 years, has consistently received Awards of Excellence and even Lighthouse Awards, their best of show.</blockquote>';
	}else if (thisAward == 'int')
	{
		script = '<em>INTERCOM</em><br><blockquote>INTERCOM, the International Communication Film and Video Competition, was created to ';
		script += 'recognize the extraordinary talents and creativity of the individuals at the top of this ever-evolving field of communication ';
		script += 'and has grown into a worldwide event that annually features over 20 participating countries. INTERCOM is sponsored by ';
		script += 'Cinema/Chicago and the Chicago International Film Festival.</blockquote>';
	}else if (thisAward == 'med')
	{
		script = '<em>Golden Reels</em><br><blockquote>The Media Communications Association &#8212; International celebrates excellence in media ';
		script += 'communications each year through the Golden Reels. For over 38 years Golden Reel honors have been highly coveted and ';
		script += 'recognized internationally for their prestige. Entries are judged by media communications professionals representing a ';
		script += 'cross section of the industry including videography, editing, scripting, audio, and graphics.</blockquote>';
	}else if (thisAward == 'nyf')
	{
		script = '<em>New York Festivals</em><br><blockquote>For nearly 50 years the New York Festivals has honored excellence in creative ';
		script += 'communication that has touched the hearts and minds of individuals worldwide. The NY Festivals International Film &amp; ';
		script += 'Video Awards recognizes &#8220;The World\'s Best Work&#8221; in informational, educational and industrial film productions ';
		script += 'and corporate video.</blockquote>';
	}else if (thisAward == 'dav')
	{
		script = '<em>The International Davey Awards</em><br><blockquote>The annual International Davey awards honors the achievements of ';
		script += 'the &#8220;Creative Davids&#8221; who derive their strength from big ideas, rather than big budgets. The Davey Awards receives ';
		script += 'thousands of entries from across the U.S. and around the world. The Davey, sponsored by the International Academy of the ';
		script += 'Visual Arts, Ad Week, Fortune Small Business, and The Creative Group, is all about intelligence, out-of-the-box thinking, ';
		script += 'and exceptional execution.</blockquote>';
	}else if (thisAward == 'com')
	{
		script = '<em>The Communicator</em><br><blockquote>The Communicator Awards is an international awards competition that recognizes ';
		script += 'outstanding work in the communication field. Entries are judged by industry professionals who look for companies ';
		script += 'and individuals whose talent exceeds a high standard of excellence and whose work serves as a benchmark for the industry.</blockquote>';
	}else if (thisAward == 'tel')
	{
		script = '<em>Tellys</em><br><blockquote>The Telly Awards has recognized the finest in creative work for over 27 years. Winners ';
		script += 'include the most prestigious agencies, productions companies, in-house creative departments and TV stations in the world. ';
		script += 'Each Telly statuette is hand made by the craftsman at RS Owens, the same firm that produces the Oscar and the Emmy Awards. ';
		script += 'Entries come from all 50 states and 30 countries around the world.</blockquote>';
	}
	
	
	//display the text here
	theObj.innerHTML = script;
}