function ADMexec(Func,Value)
{
  Func = typeof(Func)=='undefined'?'':'?State='+Func;
  Value = typeof(Value)=='undefined'?'':'&Value='+Value;
  
  tmp_loc = ''+location;
  if (tmp_loc.indexOf('?') > -1)
    tmp_loc = tmp_loc.slice(0,tmp_loc.indexOf('?'));

  Param = Func==''?'':Func+Value;
  location = tmp_loc+Param;
}
