function writeFlash (swfPath, xmlPath, width, height, flashVars) {
document.write("<object type=\"application/x-shockwave-flash\" height=\"" +height+ "\" width=\"" +width+ "\" data=\"" +swfPath+ "?file=" +xmlPath+ "\" bgcolor=\"#ffffff\"><param value=\"" +swfPath+ "?file=" +xmlPath+ "\" name=\"movie\" /><param value=\"" +flashVars+ "\" name=\"flashvars\" /><param value=\"#ffffff\" name=\"bgcolor\" /></object>")
}

function gotoFirstChild() {
window.onload=doOnLoad2;
}

var theLocation; 

function redirect() {
  location.replace(theLocation); 
}

function doOnLoad2() {
  doOnLoad();
  var theLink = $("/html/body//table[@class='link']:first//a");
  theLocation = theLink.attr("href");
  setTimeout("redirect();", 250);
}