[QUOTE=didierpavajeau]ombre otra vez
por que window.history no me arroja nada cuendo lo utilizo en un popup abierto con showmodaldialog en internet explorer
en mozila si me funciona bien
el codigo es este
paginamodal.htm
[HTML]
<html>
<script language="javascript">
function previus(){
h = window.history
if ( h.length ) // if there is a history
h.back(); // equivalent to clicking back button
}
function next(){
h = window.history;
if ( h.length ) // if there is a history
h.forward(); // equivalent to clicking back button
}
</script>