// JavaScript Document

function regtips_show() {
	if (!document.getElementById("regtips")){
		var tagnew=document.createElement("div");
		tagnew.id="regtips";
		tagnew.style.cssText="position:fixed;z-index:99999;left:0;bottom:0;padding:0;width:100%;min-width:500px;height:0px;overflow:hidden;zoom:1;_position:absolute;";
		tagnew.innerHTML="<iframe width=\"100%\" height=\"47\" frameborder=\"0\" allowtransparency=\"true\" style=\"position:absolute;z-index:-1;left:0;top:9px;min-width:500px;opacity:0;filter:alpha(opacity=0); \"></iframe><h2 style=\"position:absolute;left:0;top:0;width:100%;margin:0;padding:56px 0 0;overflow:hidden;height:0; background:url(images/regtips_bg.png) repeat-x 0 0;_background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/regtips_bg.png',sizingmethod=scale);\">µÇÂ¼ÌáÊ¾</h2><a onclick=\"regtips_close()\" style=\"position:absolute;right:11px;top:16px;width:0;cursor:pointer;padding:12px 0 0 12px;height:0;overflow:hidden;background:url(images/regtips_close.png) repeat-x 0 0;_background:url(images/tm.gif);_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/regtips_close.png',sizingmethod=scale);\"></a><div style=\" position:relative;z-index:100;margin:0 auto;width:477px; height:34px; top:17px;\"><div style=\"position:absolute;left:0;top:0;width:0;padding:34px 0 0 477px;height:0;overflow:hidden;background:url(images/regtips_content.png) repeat-x 0 0;_background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/regtips_content.png',sizingmethod=scale);\">ÀÁµÃµÇÂ¼Âð£¿×¢²áµÇÂ¼¾ÍÓÐ½±Æ·ÄÃÅ¶~</div><a href=\"register.html\" style=\"position:absolute;left:276px;top:5px;width:0;cursor:pointer;padding:26px 0 0 96px;height:0;overflow:hidden;background:url(images/tm.gif);\">×¢²á</a><a href=\"log.html\" style=\"position:absolute;left:379px;top:5px;width:0;cursor:pointer;padding:26px 0 0 96px;height:0;overflow:hidden;background:url(images/tm.gif);\">×¢²á</a></div>";
		document.body.appendChild(tagnew);
	} else {
		document.getElementById("regtips").style.height="0px";
		document.getElementById("regtips").style.display="block";
	}
	if (navigator.appVersion.indexOf("MSIE 6")!=-1) {
		document.getElementById("regtips").style.bottom="auto";
		document.getElementById("regtips").style.top=(((document.body.scrollTop>0)?document.body.scrollTop:document.documentElement.scrollTop)+document.documentElement.clientHeight)+"px";
		window.onscroll=regtips_move;
		window.onresize=regtips_move;
	}
	setTimeout('regtips_height()',5);
}
function regtips_height() {
	document.getElementById("regtips").style.height=(document.getElementById("regtips").clientHeight+1)+"px";
	if (navigator.appVersion.indexOf("MSIE 6")!=-1) {
		document.getElementById("regtips").style.top=(((document.body.scrollTop>0)?document.body.scrollTop:document.documentElement.scrollTop)+document.documentElement.clientHeight-document.getElementById("regtips").clientHeight)+"px";
	}
	if (document.getElementById("regtips").clientHeight<56) setTimeout('regtips_height()',5);
}
function regtips_close() {
	if (navigator.appVersion.indexOf("MSIE 6")!=-1) {
		window.onscroll="";
		window.onresize="";
	}
	document.getElementById("regtips").style.display="none";
}
function regtips_move() {
	document.getElementById("regtips").style.top=(((document.body.scrollTop>0)?document.body.scrollTop:document.documentElement.scrollTop)+document.documentElement.clientHeight-document.getElementById("regtips").clientHeight)+"px";
}
