<!-- //
personal_string = new String(unescape(GetCookie("personal")));
var personal_values = personal_string.split("|");
var section_path = new String ("/front");
var hostname = 'classadsdev.triangle.com';

if (personal_values[2] && personal_values[2].length >0)
{
	document.write('<i>Welcome, ' + personal_values[2] + ' </i>');
	document.write('[ <a href="http://' + hostname + '/index.php?a=10">My Ads</a> | <a href="http://' + hostname + '/index.php?a=17">Sign Out</a>\n ]');
}
else
{
	document.write('<i>Welcome, guest </i>');
	document.write('[ <a href="http://' + hostname + '/index.php?a=10">Log In</a> ]');
}

// -->
