/*This code fixes a bug in IE4
* it garauntees the window
* will come back into focus.
* Curtesy of c|net builder.com
*/

 if (window.focus) 
{
    self.focus();
}

