
/* determine what (if any) padding is needed to justify $$ amounts
   in input boxes                                                 */
 
 var boxSize;
 var len;
 function padInput(holdVal){
 
 if(window.screen.width >= 800)
  len = parseInt(holdVal.length);
 else
  len = parseInt(holdVal.length) + 1;
  
 if(navigator.appName == "Netscape") 
	   boxSize = len + 1;
 else
	   boxSize = len - 1;		
 }