// browser check
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

var ns4 = (document.layers);
var ie4 = (document.all && !document.getElementById);
var ie5 = (document.all && document.getElementById);
var ns6 = (!document.all && document.getElementById);

function layerWrite(id,text) {
  if (ns4) {
  	var lyr = document.id.document;
  	lyr.open()
  	lyr.write(text)
  	lyr.close()
  } else if (ie4) {
  	document.all[id].innerHTML = text;
  // W3C - Explorer 5+ and Netscape 6+
  } else if (ie5 || ns6) {
		document.getElementById(id).innerHTML = text;
  }
}

function writeIt(textName) {
	layerWrite( "content", eval("t_" + textName) );
}	

var t_default_text = '<div class="quote">Mouse over any of our clients to view their comments</div><br />';

var t_milliken = '<div class="quote">"Our overall service experience with Blackwell\'s Inc. was excellent."</div><br><div class="quoter">Wayne Dennis,<br>Milliken &amp; Company</div><br />';

var t_kimberly = '<div class="quote">"The Blackwell\'s Inc. crew handles themselves in a professional and courteous manner."</div><br><div class="quoter">Keith Malone,<br>Kimberly-Clark Corporation</div><br />';

var t_mid_south = '<div class="quote">"I would rate the results of Blackwell\'s Inc. as excellent."</div><br><div class="quoter">J.W. Melton,<br>Mid-South Mechanical</div><br />';

var t_kodak = '<div class="quote">"The supervisor for Blackwell\'s Inc. really listened to my concerns."</div><br><div class="quoter">Ray Brakefield,<br>Kodak</div><br />';

var t_exide = '<div class="quote">"All work was performed, reviewed and explained to my satisfaction."</div><br><div class="quoter">Jim Miller,<br>Exide Technologies</div><br />';

var t_toms = '<div class="quote">"I will recommend Blackwell\'s Inc. for opportunities which arise in the future."</div><br><div class="quoter">Harold Broughton,<br>Toms Food, Inc.</div><br />';

var t_exxon = '<div class="quote">"The work performed by Blackwell\'s Inc. was was completed on time and to our satisfaction."</div><br><div class="quoter">Curt Dunlap,<br>Exxon Mobil</div><br />';

var t_technology = '<div class="quote">"When you stop to think about it, brothers with their name on the company have to do it right."</div><br><div class="quoter">Bob Wiggins,<br>Technology Research Corp.</div><br />';

var t_marines = '<div class="quote">"I did not observe any areas in which Blackwell\'s Inc. could have improved its performance."</div><br><div class="quoter">Al Hargrove,<br>Enviromental Services,<br>United States Marine Corps</div><br />';
