gente tengo este sitio www.elcoyo.com.ar el asunto es que tengo un mapa (dentro del boton ubicacion) y quiero que cuando se haga click sobre cosquin habra un pop up. Por ahoratiene este codigo
_root.espacio.mapa.cosq.onRelease=function() {
getURL("javascript:window.open('cosquin.htm','Mapa ','width=200,height=300'")
}
pero no me abre la ventana ,la otra opcion es abrir una ventana en forma simple, como esta arriba, pero que esa ventana en si tenga un java q limite los tamaños y la ubicacion.
--------------------
consegui esto, pero....
<html>
<head>
<script>
function ResizeAndCenter(){
var width = 820;
var height = 539;
window.resizeTo(width,height);
window.moveTo((screen.availWidth/2)-(width/2),(screen.availHeight/2)-(height/2))
//esto no sirve :S
window.toolbar.visible = false;
window.menubar.visible = false
}
</script>
</head>
<body onload="ResizeAndCenter()">
</body>
</html>
consegui esto, pero no me quita ni el toolbar ni el menubar, ideas?