//Prototype Windows Class
var win = null;
var index = 6000;
function openDialog(id,w,h) {
    Dialog.alert($(id).innerHTML, {className: "alphacube",  width:w, height:h, okLabel: "Close", ok:closeAllModalWindows, id: "d" + index})
    index++;
}

function lastDialog(id) {
    Dialog.confirm($(id).innerHTML, {className: "alphacube",  width:250, okLabel: "Close", ok: closeAllModalWindows})
}

function closeAllModalWindows() {
    Windows.closeAllModalWindows();
    return true;
}


function Enter()
{
        closeAllModalWindows();
		document.getElementById('b').style.display = 'block';
		document.getElementById('c').style.display = 'block';
		document.getElementById('header').style.display = 'block';
		document.getElementById('topnav').style.display = 'block';
}


