tengo una función que me trabaja bien en Mozilla y no en IE.
Me pudieran ayudar???
la función es:
Código:
function openWithSelfMain(url,name,width,height) { var options = "width=" + width + ",height=" + height + "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no"; new_window = window.open(url, name, options); window.self.name = "main"; new_window.moveTo(((screen.availWidth/2)-(width/2)),((screen.availHeight/2)-(height/2))) new_window.focus(); }
los parámetro que paso son los siguientes:
Código:
<a title="View Account" href="javascript:justReturn()" onClick="openWithSelfMain('http://localhost/exoops/modules/reserva/admin/popupInfoUser.php?op=viewItem&co=114&usr=1&nore=20050128114&[email protected]','nombre admin',650,350)">nombre admin</a>