executar a função JavaScript quando a página carrega

window.onload = function() {
  yourFunction(param1, param2);
};
Master Aniket