Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/06/2011, 09:20
rodas0516
 
Fecha de Ingreso: enero-2011
Mensajes: 26
Antigüedad: 13 años, 3 meses
Puntos: 0
Pregunta Pop-up necesito que tenga Scroll

Necesito corregir este código para que mi pop-up muestre una poción de mi pop-up y active un Scroll (por qué el contenido en el es mayor al que se puede ver en la pantalla)

"Y no me digan achicar las dimensiones por q eso no funciona"

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<script src="../../Scripts/swfobject_modified.js" type="text/javascript"></script>
<script language="JavaScript1.2">
function VentanaCentrada(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
if(window.screen)if(isCenter)if(isCenter=="true"){
var myLeft = (screen.width-myWidth)/2;
var myTop = (screen.height-myHeight)/2;
features+=(features!='')?',':'';
features+=',left='+myLeft+',top='+myTop;
}
window.open(theURL,winName,features+((features!='' )?',':'')+'width='+myWidth+',height='+myHeight);
}
</script>

</head>
<body>
<a href="javascript:VentanaCentrada('800.html','Test' ,'','500','3762','true')" >
<img src="banner.jpg" alt="reportaje" width="222" height="63" border="0" /></a>

</body>
</html>