// Link Sign //
function bluring(){
 if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;


// »õÃ¢ °ü·Ã ½ÃÀÛ
function Open_Window(Filename,w_name,w_size,h_size,scroll_on)
{
window.open(Filename,w_name,'toolbar=no,status=no,width='+w_size+',height='+h_size+',directories=no,scrollbars='+scroll_on+',location=no,resize=no,menubar=no');
}

function Open_WindowResize(Filename,w_name,w_size,h_size,scroll_on)
{
	var bodyCH = document.documentElement.clientHeight;
	if (bodyCH < h_size) {
		window.open(Filename,w_name,'toolbar=no,status=no,width='+w_size+',height='+bodyCH+',directories=no,scrollbars='+scroll_on+',location=no,resize=no,menubar=no');
	} else {
		window.open(Filename,w_name,'toolbar=no,status=no,width='+w_size+',height='+h_size+',directories=no,scrollbars='+scroll_on+',location=no,resize=no,menubar=no');
	}
}


function PopUp(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// »õÃ¢ °ü·Ã ³¡

//ÆäÀÌÁö ÀÌµ¿
function go(url) {
	document.location.href=url;
}


//ÀÎÆ®·ÎÆäÀÌÁö ÀÌµ¿
function GoIntro() {
	top.document.location.href="/";
}

//¸ÞÀÎÆäÀÌÁö ÀÌµ¿
function GoMain(act) {
	switch (act) {
		case "kr" : document.location.href="/10SS/flash/";
		break;
		case "en" : document.location.href="/10SS_eng/flash/";
		break;
		case "ch" : document.location.href="/10SS_chn/flash/";
		break;
	}
}


//RECYCLE
function GoRecycle() {
	document.location.href="/10SS/flash/default.asp?openPage=../recycle/recycle.swf";
}

//ºê·£µå¸ô ÀÌµ¿
function GoMall() {
	alert("ÁØºñÁß ÀÔ´Ï´Ù.");
}


//Lady ÀÌµ¿
function GoWannabe() {
	
	document.getElementById("HtmlDiv").style.display = "block";
	document.getElementById("HtmlArea").src = "/wannabe_10ss/";
	document.getElementById("HtmlArea").style.display = "block";
}

//Lady ´Ý±â
function GoWannabeHide() {
	document.getElementById("HtmlArea").src = "/wannabe_10ss/blank.asp";
	document.getElementById("HtmlArea").style.display = "none";
	document.getElementById("HtmlDiv").style.display = "none";
	document.getElementById("MainFlash").style.height = "730px";
	parent.resizeFrameMain("730");
}


//»ç¿îµå Á¦¾î
function soundAct() { 
	if (parent.act == "Y")
	{
		parent.document.getElementById("bgsound").stop(); 
		parent.act = "N";
	} else {
		parent.document.getElementById("bgsound").play(); 
		parent.act = "Y";
	}
}
///»ç¿îµå Á¦¾î

