var imgheight=5;
var imgwidth=5;
document.ns=navigator.appName=="Netscape";
window.screen.width>1000?imgheight=520:imgheight=380;
function myload(){
	if(navigator.appName=="Netscape"){
		document.myright.pageY=pageYOffset+window.innerHeight-imgheight;
		document.myright.pageX=pageYOffset+window.innerWidth-125;
		rightmove();
		document.myleft.pageY=pageYOffset+window.innerHeight-imgheight;
		document.myleft.pageX=imgwidth;
		leftmove();
	}else{
		myright.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
		myright.style.left=document.body.offsetWidth-125;
		rightmove();
		myleft.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
		myleft.style.left=imgwidth;
		leftmove();
	}
}
function rightmove(){
	if(document.ns){
		document.myright.top=pageYOffset+window.innerHeight-imgheight;
		document.myright.left=pageXOffset+window.innerWidth-125;
		setTimeout("rightmove();",50);
	}else{
		myright.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
		myright.style.left=document.body.scrollLeft+document.body.offsetWidth-125;
		setTimeout("rightmove();",50);
	}
}
function leftmove(){
	if(document.ns){
		document.myleft.top=pageYOffset+window.innerHeight-imgheight;
		document.myleft.left=imgwidth;
		setTimeout("leftmove();",50);
	}else{
		myleft.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
		myleft.style.left=imgwidth;
		setTimeout("leftmove();",50);
	}
}
function MM_reloadPage(init){
	if(init==true) with(navigator){
		if((appName=="Netscape")&&(parseInt(appVersion)==4)){
			document.MM_pgW=innerWidth;
			document.MM_pgH=innerHeight;
			onresize=MM_reloadPage;
		}
	}else if(innerWidth!=document.MM_pgW||innerHeight!=document.MM_pgH){
		location.reload();
	}
}
MM_reloadPage(true);
