var top_GG,top_NGG;
var t_timer0,t_timer1;
var t_step=10;
var t_endTimer=5000;
window.attachEvent("onload",top_onload); 
function show_top_GG(shtml,swidth,sheight,stimer,sstep){
	if(stimer)t_endTimer=stimer;
	if(sstep)t_step=sstep;
	document.write("<div id='top_GG' style='position:relative;width:"+swidth+";height:"+sheight+";display:none;overflow:hidden' onmouseover=\"top_onmouseover();\" onmouseout=\"top_onmouseout();\">");
	document.write("<div id='top_NGG'>");
	//document.write("<img border='0' src='images/snspush_close.gif' style='position: absolute; top: 2; right: 0; z-index: 1' onclick=\"close_top_GG();\">");
	document.write("<div style='position: absolute; width: ;height: ;top: 5; right: 5; z-index: 1;font-size:9pt;border:0px solid #000000;text-align:center;cursor:hand;' onclick=\"close_top_GG();\">¡Á¹Ø±Õ</div>");
	document.write("");
	document.write("");
	document.write("");
	document.write(shtml);
	document.write("</div>");
	document.write("</div>");
}
function top_onmouseover(){
	window.clearTimeout(t_timer0);
}
function top_onmouseout(){
	t_timer0=window.setTimeout("close_top_GG()",t_endTimer);
}
function top_onload(){
	t_timer1=window.setTimeout("open_top_GG()",2000);
}
function open_top_GG(){
	top_GG=document.getElementById("top_GG");
	top_NGG=document.getElementById("top_NGG");
	top_GG.style.height=1;
	top_GG.style.display="";
	open_top_GG2(top_NGG.offsetHeight);
	top_onmouseout();
}
function open_top_GG2(sheight){
	if(top_GG.offsetHeight+t_step>=sheight){
		window.clearTimeout(t_timer1);
		top_GG.style.height=sheight;
		return;
	}
	//window.status=top_GG.offsetHeight;
	top_GG.style.height=top_GG.offsetHeight+t_step;
	t_timer1=window.setTimeout("open_top_GG2('"+sheight+"')",10);
}
function close_top_GG(){
	top_GG=document.getElementById("top_GG");
	window.clearTimeout(t_timer0);
	top_GG.style.height=top_GG.offsetHeight;
	close_top_GG2();
}
function close_top_GG2(){
	if(top_GG.offsetHeight-t_step<=0){
		top_GG.style.display="none";
		window.clearTimeout(t_timer0);
		return;
	}
	//window.status=top_GG.offsetHeight;
	top_GG.style.height=top_GG.offsetHeight-t_step;
	t_timer0=window.setTimeout("close_top_GG2()",10);
}

