var isLogin=false;
var wel = 'Login | Register';
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
}
else {
window.onload = function() {
oldonload();
func();
}
}
}
function welcome(){
if (document.getElementById('loginBar')) {
document.getElementById('loginBar').innerHTML = wel;
}
if (isLogin) {
if (document.getElementById('personals')) {
document.getElementById('personals').style.display='none';document.getElementById('personalsIn').style.display='block';
}
} else if (document.getElementById('saverIn')) {
var d = document.getElementById('saverIn');
d.innerHTML += 'After Signing up, by using the "Save picture" button you will be able to save your design and add it to your personal gallery!';
}
}
addLoadEvent(welcome);