<!--
var Type = 'Z';
function StartFloat() {
	if(document.all) {
		//document.all.FloaterLeft.style.pixelLeft = document.body.clientWidth - document.all.FloaterLeft.offsetWidth;
		document.all.FloaterLeft.style.pixelLeft = 25;
		document.all.FloaterLeft.style.visibility = 'visible';
		document.all.FloaterRight.style.pixelLeft = document.body.clientWidth - document.all.FloaterRight.offsetWidth - 25;
		document.all.FloaterRight.style.visibility = 'visible';
		Type = 'A';
		//IE
	}
	else if(document.layers) {
		//document.FloaterLeft.left = window.innerWidth - document.FloaterLeft.clip.width - 16;
		document.FloaterLeft.left = 25;
		document.FloaterLeft.visibility = 'show';
		document.FloaterRight.left = window.innerWidth - document.FloaterRight.clip.width - 25;
		document.FloaterRight.visibility = 'show';
		Type = 'B';
	}
	else if(document.getElementById) {
		//document.getElementById('FloaterLeft').style.left = (window.innerWidth - 35) + 'px';
		document.getElementById('FloaterLeft').style.left = '25px';
		document.getElementById('FloaterLeft').style.visibility = 'visible';
		document.getElementById('FloaterRight').style.left = (window.innerWidth - 110) + 'px';
		document.getElementById('FloaterRight').style.visibility = 'visible';
		Type = 'C';
		//FF
	}
	if (document.all) { 
		window.onscroll = Float; 
	}	else { 
		setInterval('Float()', 100); 
	}
}
function Float() {
	if (Type == 'A') { 
		document.all.FloaterLeft.style.pixelTop = document.body.scrollTop + 25; 
		document.all.FloaterRight.style.pixelTop = document.body.scrollTop + 250; 
	}	else if (Type == 'B') { 
		document.FloaterLeft.top = window.pageYOffset + 25; 
		document.FloaterRight.top = window.pageYOffset + 250; 
	}	else if (Type == 'C') { 
		document.getElementById('FloaterLeft').style.top = window.pageYOffset + 25 + 'px'; 
		document.getElementById('FloaterRight').style.top = window.pageYOffset + 250 + 'px'; 
	}
} //-->