// JavaScript Document
function keepitup()
{
	if(document.body.scrollTop>193)
	{
		document.getElementById('under').style.position = 'fixed';
	document.getElementById('under').style.posTop=document.body.scrollTop;
document.getElementById('under').style.top = '0px';

	}
	else if(document.documentElement.scrollTop>193)
	{
		document.getElementById('under').style.position = 'fixed';
	document.getElementById('under').style.top = '0px';
	}
	else
	{
		document.getElementById('under').style.position = 'relative';
		document.getElementById('under').style.top = '-88px';
	}
}
function addevent() {
    window.attachEvent("onscroll",appel);
}
function appel(event) {
    if (document.documentElement.scrollTop > 193) {
        document.getElementById('under').setAttribute('style', 'position:fixed;top:0px;');

    }
    else {
        document.getElementById('under').setAttribute('style', 'position:relative;top:-88px;');
    }
} 
function bookmarkThis(title,url)
{
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
}
