/* Functions that handle on the fly style changes */

<!--
function DomStyle_Set(){
 // only if ver 5 browser
 if(!document.getElementById){alert('Please download the newest version of your browser');return;}
 var i,g,args=DomStyle_Set.arguments;
 for(i=0;i<args.length;i+=3){
  g=document.getElementById(args[i]);
  if(g){
   eval("g.style."+args[i+1]+"=\""+args[i+2]+"\"");
  }
 }
}


var fsz = 90;
function IncrDecrStyle_Set(){
 // only if ver 5 browser
 if(!document.getElementById){alert('Please download the newest version of your browser');return;}
 var i,g,v,args=IncrDecrStyle_Set.arguments;
 for(i=0;i<args.length;i+=3){
  g=document.getElementById(args[i]);
  if(g){
   fsz += parseInt(args[i+2]);
   eval("g.style."+args[i+1]+"=\""+fsz+"%\"");
  }
 }
}
//-->
