no existe un equivalente a
window.open. y a mi parecer, no existe solucion crossbrowser. el siguiente ejemplo solamente funciona en iexplorer, por lo menos el 7.
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>PCDATA</title>
<script type="text/javascript">
onload = function(){
document.links[0].click();
}
</script>
</head><body>
<a href="mgs.htm" target="_blank">link</a>
</body></html>