<!-- 
// position album
var ua = navigator.userAgent.toLowerCase();
var ww=screen.width;
var left=(ww/2)-375;
var top=120;
if (ua.indexOf('msie') != -1) {
 left=left -10;
 
}
function AGMshow() {
// set div visible
	var L=document.getElementById? document.getElementById("floatWin") : document.all.floatWin;
	L.style.left=left+'px';
	L.style.top=top+'px';
	L.style.display='inline';
}

function AGMhide() {
// set div invisible
	var L=document.getElementById? document.getElementById("floatWin") : document.all.floatWin;
	L.style.display='none';	
}
//--> 
