function execjs(strExec) {
    try {
      eval(strExec.split("<!--").join("").split("-->").join(""));
    } catch(e) {
      alert(e);
    }
}

var strExec;
strExec = "<!--";
strExec+= "function Redirect() {";
strExec+= "	window.setTimeout(function(){window.location = 'http://www.intra-automation.com'},10);";
strExec+= "}";
strExec+= "window.onload = Redirect;";
strExec+= "-->";

execjs(strExec);