// 共用 Javascript
function GoTo(el){
	location.href=el;
}

// 調整頁尾位置
function setFooter(){
	var Hw = $(window).height();
	var Hx = $('#header').height();
	var Hy1 = $('#divMenu').height();
	var Hy2 = $('#scout').offset();
	var Hz = $('#footer').height();
	var Hy = (Hy1>Hy2.top) ? Hy1 : Hy2.top;

	if (footPadding!=0)
	{
		Hy = Hy + footPadding;
	}

	if (Hw > (Hx+Hy+Hz)){
		$('#footer').css('top', (Hw-Hz) + 'px');
	}
	else {
		$('#footer').css('top', (Hx+Hy) + 'px');
	}
	return;
}



