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;\">\n<div style=\"margin: 0px; height: 120px; width: 205px; bottom: 0px; right: 0px; position: relative\">\n    <div style=\"margin: 0px; background: url(\'http://www.ragazzeinvendita.com/themes/pink/i/popupTool/header_back.jpg\') repeat-x; height: 20px; border: solid #6588ba; border-width: 1px 1px 0px 1px\">\n        <a href=\"http://www.ragazzeinvendita.com?rcid=389\" style=\"background: url(\'http://www.ragazzeinvendita.com/themes/pink/i/popupTool/button_normal.jpg\'); width: 11px; height: 11px; margin: 5px 6px 0px 0px; overflow: hidden; float: right\"></a>\n        <img src=\"http://www.ragazzeinvendita.com/themes/pink/i/popupTool/logo.jpg\" style=\"margin-left: 10px;\"/>\n    </div>\n    <div style=\"margin: 0px; background: url(\'http://www.ragazzeinvendita.com/themes/pink/i/popupTool/back.jpg\'); height: 96px;\">\n        <div style=\"padding: 15px 0px 0px 10px; float: left;\">\n            <a href=\"http://www.ragazzeinvendita.com/profile.php?nick=dalia82&rcid=389\"><img src=\"http://www.ragazzeinvendita.com/u/photos/5/567548/thumb/000285944.jpg\" width=\"59\" height=\"59\" style=\"border: 1px solid #003663;\" /></a>\n        </div>\n        <p style=\"margin: 0px 0px 0px 79px; padding-top: 15px;\">\n            <a href=\"http://www.ragazzeinvendita.com/profile.php?nick=dalia82&rcid=389\" style=\"color: #00abd0\">dalia82 ti invita a conoscerla</a>\n        </p>\n        <a href=\"http://www.ragazzeinvendita.com/profile.php?nick=dalia82&rcid=389\" style=\"position: absolute; bottom: 6px; right: 8px; color: #00abd0;\">more...</a>\n    </div>\n</div>\n</div>\n');
