function doYourThing() 
{
  if (arguments.length > 0) {
    window.location.replace(arguments[0]);
  } else {
    window.location.replace('main.html');
  }
  
}




