<!--
/*
Created by Sharon Paine of Dynamic Web Coding
www.dyn-web.com
*/

// displays when page loads


function showInfo(txt) {

// 'info' class is specified for formatting in style sheet above
// where 'td.info' necessary or Netscape will ignore it
var info = '<TABLE WIDTH="480" CELLPADDING="4" BORDER="0"><TR><TD class="info" VALIGN="top">' + txt  + '</TD></TR></TABLE>'

// checking for objects (layers and all)  
// instead of formal browser detection 
	if (document.layers) {
		document.info.document.write(info)
		document.info.document.close()
	}
	
	if (document.all) {
  	document.all.info.innerHTML = info
  }
}
//-->
