/* ¿À¸¥ÂÊ ¹öÆ° ±ÝÁö ¹× ºê¶ó¿ìÀú ¹ÙÅÁ ±Û */
function hidestatus(){
	window.status=''
	return true
}

if (document.layers)
document.captureEvents(Event.mouseover | Event.mouseout)
document.onmouseover=hidestatus
document.onmouseout=hidestatus


var text = ":: ¸Á°íÆÃ¿¡¼­ ½Å³ª´Â °ÔÀÓÀÇ ¼¼°è·Î ::"
var speed = 150
var x = 0 
function bb() { 
var a = text.substring(0,x) 
var b = text.substring(x,x+1).toUpperCase() 
var c = text.substring(x+1,text.length) 
window.status = a + b + c 
if (x == text.length) { 
	x = 0 
} 
else { 
	x++ 
} 
setTimeout("bb()",speed) 
} 
//bb(); 

function showSectL() {
          document.all.sectL.style.display = "";
}

function hideSectL() {
          document.all.sectL.style.display = "none";
}

function startpage() 
{
url="http://www.mangoting.com";

		document.links[0].style.behavior = 'url(#default#homepage)';
		document.links[0].setHomePage(url);
		top.location.href = url;
}
