Hola
 
Esto debería de funcionar    
Código Javascript
:
Ver original- function cargaSolapa3(selectDestino,aspDestino, bol) 
- { 
-         ajax=nuevoAjax(); 
-         // alert(aspDestino); 
-         ajax.open("GET", aspDestino, true); // Envio al servidor a que lea la página  
-         ajax.onreadystatechange=function() 
-         { 
-             if (ajax.readyState==READY_STATE_COMPLETE) 
-             { 
-                 var str = ajax.responseText; 
- if (bol == true) { 
- return window.open("pagina.php?valor="+str,"popup"); 
- } else { 
-                 document.getElementById(selectDestino).innerHTML = str; 
- } 
-                 } 
-             } 
-         ajax.send(null); 
- } 
Suerte