en el link que se
VE, las ventanas no aparecen en el link que
no se ve en el espacio en blanco.
les dejo el codigo de la pagina que se ve y que deberia aparecer en la pagina al lado de la barra de menu, en donde esta el espacio en blanco:
Código HTML:
<html>
<head>
<link href="../estilos/default.css" rel="stylesheet" type="text/css"/>
<link href="../estilos/alphacube.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../js/prototype.js"> </script>
<script type="text/javascript" src="../js/effects.js"> </script>
<script type="text/javascript" src="../js/window.js"> </script>
<script type="text/javascript" src="../js/window_effects.js"> </script>
<script type="text/javascript" src="../js/debug.js"> </script>
<script type="text/javascript">
function win1()
{
var win = new Window({id: "win1", className: "alphacube", title: "Últimas Noticias", width:250, height:150, wiredDrag: true});
win.getContent().innerHTML = "<h1>No Constraint</h1>Wired mode<br><a href='#' onclick='Windows.getWindow(\"win1\").maximize()'>Maximize me</a>";
win.setDestroyOnClose();
win.setLocation(5, 5);
win.show();
win.toFront();
}
function win2()
{
var win = new Window({id: "win2", className: "alphacube", title: "Últimas Fichas", width:250, height:150, wiredDrag: true});
win.getContent().innerHTML = "<h1>No Constraint</h1>Wired mode<br><a href='#' onclick='Windows.getWindow(\"win2\").maximize()'>Maximize me</a>";
win.setDestroyOnClose();
win.setLocation(5, 300);
win.show();
win.toFront();
}
function win3()
{
var win = new Window({id: "win3", className: "alphacube", title: "Últimos Enlaces", width:250, height:150, wiredDrag: true});
win.getContent().innerHTML = "<h1>No Constraint</h1>Wired mode<br><a href='#' onclick='Windows.getWindow(\"win3\").maximize()'>Maximize me</a>";
win.setDestroyOnClose();
win.setLocation(200, 5);
win.show();
win.toFront();
}
function win4()
{
var win = new Window({id: "win4", className: "alphacube", title: "Novedades", width:250, height:150, wiredDrag: true});
win.getContent().innerHTML = "<h1>No Constraint</h1>Wired mode<br><a href='#' onclick='Windows.getWindow(\"win4\").maximize()'>Maximize me</a>";
win.setDestroyOnClose();
win.setLocation(200, 300);
win.show();
win.toFront();
}
</script>
<style>
#windows {
float:left;
width:100%;
}
</style>
</head>
<body>
<div id="windows">
<script>
win1();
win2();
win3();
win4();
</script>
</div>
</body>
</html>