function my_account()
{
document.getElementById('account').innerHTML='<div style="position:absolute; height:1px;"><div style="width:180px; top:33px; height:50px; border:1px solid #CCCCCC; background-color:#ffffff; padding:5px;  margin:0px; left:186px; overflow:visible; z-index:999; position:relative;"  onMouseout="my_account_hide_ch(event)"><a href="openauctions.php"><?=$MSG_203?></a><br><a href="ybids.php" ><?=$MSG_620?></a><br><a href="logout.php?"><?=$MSG_245?></a></div></div>';	
}
function my_account_hide_ch(e)
{
if (!e) var e = window.event;
//alert(e);
var tg = (window.event) ? e.srcElement : e.target;
if (tg.nodeName != 'DIV') return;
var reltg = (e.relatedTarget) ? e.relatedTarget : e.toElement;
while (reltg != tg && reltg.nodeName != 'BODY')
	reltg= reltg.parentNode
if (reltg== tg) return;
//alert(reltg+'-'+tg);
document.getElementById('account').innerHTML='';

}

function my_account_hide()
{
document.getElementById('account').innerHTML='';
}