<!-- hide from old browsers

/////////////////////////////////////////////////////////////////
// Browser Detection for deciding which css
// to use. Requires that useragent has JavaScript
// on to benefit from CSS.
// Adam Leadoux. 29/06/2001
/////////////////////////////////////////////////////////////////

// If the platform is Macintosh:
if (navigator.platform.indexOf('Mac') != -1) {
   // If IE 5.0 for Mac use winstyles.css
   if (navigator.userAgent.indexOf("MSIE 5.") != -1)
{document.write('<link rel="stylesheet" href="win.css">');}
   else 
      {document.write('<link rel="stylesheet" href="win.css">');}
   } // end Mac if
// Otherwise, use the Windows style sheet.
   else{
if (document.all || document.getElementById)
   {document.write('<link rel="stylesheet" href="win.css">');}
else 
{document.write('<link rel="stylesheet" href="win.css">');}
}
document.write('<link rel="stylesheet" href="specimen.css">');

function limitText(limitField, limitCount, limitNum) {
	if (limitField.value.length > limitNum) {
		limitField.value = limitField.value.substring(0, limitNum);
	} else {
		limitCount.value = limitNum - limitField.value.length;
	}
}





// stop hiding -->