
function www(e) {
isDOM=document.getElementById 
isMozilla=isDOM && navigator.appName=="Netscape"
isOpera=isOpera5=window.opera && isDOM
isOpera7=isOpera && document.readyState
el=window.document.getElementById('begun');
w=isOpera7 || isMozilla?window.innerWidth:window.document.body.clientWidth;

h=(isMozilla?document.height:window.document.body.scrollHeight)-143;

//h=isOpera7?document.body.style.pixelHeight:window.document.body.clientWidth;

	if(isMozilla) {
		el.style.left=(w<wid_max)?wid_max-8:w-22;
		client_top=e.pageY;
		
		
		if (client_top<4){el.style.top=4;
			}else {
				if (client_top>99 && client_top<height_top){el.style.visibility='hidden';} 
				else {el.style.visibility='visible';
			
					if (client_top>h){el.style.top=h}
					else {
						el.style.top=client_top;
					}
				}
			
			}

	}else{
			el.style.left=((w<wid_max)?wid_max:w)-8;
			client_top=event.clientY+window.document.body.scrollTop;
//		alert(h);
			if (client_top<4){el.style.top=4;
			}else {
				if (client_top>99 && client_top<height_top){el.style.visibility='hidden';} 
				else {el.style.visibility='visible';
			
					if (client_top>h){el.style.top=h;}
					else {
						el.style.top=client_top;
						
					}
				}
			
			}
	}

}
function write_ee() {
window.document.write("<div id='begun' style=\"position:absolute;z-index:5;\"><img src='/imgs/design/begun.gif' width=8 height=2 border=0 alt=''></div>");
window.document.onmousemove=www;
window.onload=www;
window.onresize=www;
window.onscroll=www;

}

