what could be the script or code used in this welcome sreen, when logging in? like in
http://www.symbianize.com
http://www.symbianize.com
$(document).ready(function() {
var x = document.getElementById('logout');
$(x).click(function(cLogout) {
var y = confirm("Are you sure you want to logout?");
if (y == true) {
return true;
} else { cLogout.preventDefault(); }
});
});