function getElement(id)
{
	return document.getElementById(id);
}

var oldOnloadHandler = null, toolHeight = 120, curHeight = 0;
oldOnloadHandler = window.onload;
window.onload = startWinpopupTool;

function startWinpopupTool()
{
	if (oldOnloadHandler != null) {
		oldOnloadHandler();
	}
	curHeight = 0;
	setTimeout(showPopupTool, 1000);
}

function showPopupTool()
{
	el = getElement('popupTool');
	el.style.height = curHeight + 'px';
	el.style.bottom = '0px';
	el.style.display = '';
	curHeight += 2;
	if (curHeight < toolHeight) {
		setTimeout(showPopupTool, 10);
	}
}

function closePopupTool()
{
	el = getElement('popupTool');
	if (el.style.display != 'none') {
		el.style.display='none';
	}
}

document.write('<div id="popupTool" style="margin: 0px; height: 0px; width: 205px; position: fixed; display: none; z-index: 9999; bottom: 0px; right: 0px; overflow: hidden; font-size: 11px; font-family: Tahoma, Verdana; background: #c4e2ec;">');
document.write('<div style="margin: 0px; height: 120px; width: 205px; bottom: 0px; right: 0px; position: relative">');
document.write('    <div style="margin: 0px; background: url(\'http://www.24live7.com/i/popupTool/header_back.jpg\') repeat-x; height: 24px; border: solid #6588ba; border-width: 1px 1px 0px 1px">');
document.write('        <a href="javascript:closePopupTool()" style="background: url(\'http://www.24live7.com/i/popupTool/button_normal.jpg\'); width: 11px; height: 11px; margin: 5px 6px 0px 0px; overflow: hidden; float: right"></a>');
document.write('        <img src="http://www.24live7.com/i/popupTool/logo.jpg" style="margin-left: 10px;"/>');
document.write('    </div>');
document.write('    <div style="margin: 0px; background: url(\'http://www.24live7.com/i/popupTool/back.jpg\'); height: 96px;">');
document.write('        <div style="padding: 15px 0px 0px 10px; float: left;">');
document.write('            <a href="http://www.24live7.com/profile.php?nick=innahot&rcid=1024"><img src="http://www.24live7.com/u/photos/6/6809/thumb/000005092.jpg" width="59" height="59" style="border: 1px solid #003663;" /></a>');
document.write('        </div>');
document.write('        <p style="margin: 0px 0px 0px 79px; padding-top: 15px;">');
document.write('            <a href="http://www.24live7.com/profile.php?nick=innahot&rcid=1024" style="color: #fff">innahot #nick# invites you to check her profile</a>');
document.write('        </p>');
document.write('        <a href="http://www.24live7.com/profile.php?nick=innahot&rcid=1024" style="position: absolute; bottom: 6px; right: 8px; color: #fff">');
document.write('            More...');
document.write('        </a>');
document.write('    </div>');
document.write('</div>');
document.write('</div>');
