de login
*/
function desktopizer_addLogin()
{
document.getElementById("login_f").innerHTML = "
You have to enter you username and password to manage this site.
";
if (root_LoginLogged == 0)
{
document.getElementById("login").innerHTML = '

';
}
else
{
document.getElementById("login").innerHTML = '

';
}
}
/*
Function: buildPage
construit la page web
*/
function desktopizer_buildPage()
{
document.onkeypress = function(event) { return events_keyPress(event); };
document.onkeydown = function(event) { return events_keyDown(event); };
document.onkeyup = function(event) { return events_keyUp(event); };
document.onclick = function(event) { events_click(event, 0, 'desktop'); };
if (root_LoginLogged == 1) document.oncontextmenu = function(event) { contextMenu_Show(event,'contextMenu_TypeDesktop', 'desktop', 'desktop', false); return false; };
}
desktopizer_addScripts();