page = "home";
var welcome;
var welcomestr;
var welcomeclose;
var motto;
var mottostr;
var mottoclose;

function closeWelcome()
{

welcome = document.getElementById("welcome");
welcome.innerHTML = "<a href='#' onclick='openWelcome()'>Welcome to Ozucs</a>";
welcome.style.border = "0";

}

function openWelcome()
{

welcomestr = "<span id='welcomestring' class='welcomestring'>Welcome to Ozucs. Ozucs is a knowledge generating social network that informs people in the world about you, your thoughts, your photos and vice versa. When people know you, you tend to get treated better. Below are some of the features in Ozucs that help people to know you better.<p>Ozucs empowers you to: <ul><li>add photos</li><li>send messages</li><li>add friends</li><li>set privacy</li><li>write comments</li></ul></p>All activities in Ozucs are free.</span>";
welcomeclose = "<span id='welcomeclose' class='closebutton'><img src='x.bmp' onclick='closeWelcome()'/></span><br/>";
welcome.innerHTML = welcomestr + welcomeclose;
welcome.style.border = "1px solid gray";

}

function closeMotto()
{

motto = document.getElementById("motto");
motto.innerHTML = "<a href='#' onclick='openMotto()'>Ozucs motto</a>";
motto.style.border = "0";

}

function openMotto()
{

mottostr = "<span id='mottostring' class='mottostring'>Ozucs is not about pride. It is about how an individual fits into a global community.</span>";
mottoclose = "<span id='mottoclose' class='closebutton'><img src='x.bmp' onclick='closeMotto()'/></span><br/>";
motto.innerHTML = mottostr + mottoclose;
motto.style.border = "1px solid gray";

}