// JavaScript Document
function update(msg) 
{
   var pad_str="";
   n = msg.length;
   if(n<0) 
   {
      pad = (0-n)/2;
      for(var i=0; i<pad; i++) 
      {
         pad_str+=" ";
      }	
   }	
   CurrentMsg = pad_str + msg;
   document.messages.field.value = CurrentMsg;
}	

function nochange() 
{
   CurrentMsg = "";
   document.messages.field.value = "Sluneční energie a obnovitelné zdroje.";
}

