void Update () {
StartCoroutine( Do() );
//or the less efficient version that takes a string, but is limited to a single parameter.:
StartCoroutine("Do" , parameter);
//The advantage to the string version is that you can call stop coroutine:
/StopCoroutine("Do");