function win_Login(x,y)
{
var win = new Window({id: "win_Login", className: "alphacube", title: "Login", width:329, height:184});
win.getContent().innerHTML = document.getElementById('LoginDiv').innerHTML;
//win.getContent().innerHTML = "<h1> hello world</a>";
win.setDestroyOnClose();
win.setLocation(x, y);
win.show();
//win.setConstraint(true, {left:0, right:0, top: 30, bottom:10})
win.toFront();
}

function win_Timepass(x,y)
{

var win = new Window({id: "win_Timepass", className: "alphacube", title: "Timepass", width:460, height:160});
win.getContent().innerHTML = document.getElementById('TimepassDiv').innerHTML;
//win.getContent().innerHTML = "<h1> hello world</a>";
win.setDestroyOnClose();
win.setLocation(x, y);
win.show();
//win.setConstraint(true, {left:0, right:0, top: 30, bottom:10})
win.toFront();
}