
var html = "";
html += "<div id='bubbleDiv' class='bubble'>";
html += "	<div class='text medium black'>";
html += "		Remember to <a href='#' id='signUpLink' class='link blue3 text medium'>Sign up</a> or Login<br /><br />";
html += "		<i>This way you can access the <br />full potential of the site.</i>";
html += "	</div>";
html += "	<div style='width:170px;padding-top:10px;' align='right' class='text medium black'>[<a id='closeBubble' href='#' class='link text medium black'>close</a>]</div>";
html += "</div>";

document.write(html);

function initbox() 
{
var win = window;
if ($('#sectionBar').html() == null) win = parent.window; 
win.$('#bubbleDiv').fadeIn('normal');
return;
}

$('#signUpLink').click(function (){ $('#bubbleDiv').fadeOut('normal'); window.frames['centralTab'].location = URLRoot+'redir/other/signup'; });
$('#closeBubble').click(function(){ $('#bubbleDiv').fadeOut('normal'); });

