/*Common JavaScript*/

/****************************************************************
°­ÀÇÁ¤º¸Ã¢ ¶ç¿ì±â
****************************************************************/

// ÇÔ¼öÀÌ¸§ : ever_player()
// ÇÔ¼ö¼³¸í : ÇÃ·¹ÀÌ¾î Ã¢ 
// ÀÔ ·Â °ª : °´Ã¼, ¼Ó¼º
// ¹Ý È¯ °ª :
function ever_player(targetURL)  {
	var targetURL;
	window.open( targetURL, "Player", "scrollbars=no,width=958,height=600" ).focus();
}

// ÇÔ¼öÀÌ¸§ : ever_player()
// ÇÔ¼ö¼³¸í : ¾à·Â ¿ÀÇÂÀ©µµ¿ì
// ÀÔ ·Â °ª : °´Ã¼, ¼Ó¼º
// ¹Ý È¯ °ª :
function career (targetURL)  {
	window.open( targetURL,"", "scrollbars=no,width=300,height=380" )
}

// ÇÔ¼öÀÌ¸§ : ever_player()
// ÇÔ¼ö¼³¸í : ±³Àç¼³¸íÀ» À§ÇÑ ¿ÀÇÂÀ©µµ¿ì
// ÀÔ ·Â °ª : °´Ã¼, ¼Ó¼º
// ¹Ý È¯ °ª :
function gyojae (targetURL)  {
	window.open( targetURL,"", "scrollbars=no,width=475,height=630" )
}

// ÇÔ¼öÀÌ¸§ : mouseOver()
// ÇÔ¼ö¼³¸í : ¸Þ´º ·Ñ¿À¹ö (Àü »çÀÌÆ®¿¡ Àû¿ë)
// ÀÔ ·Â °ª : °´Ã¼, ¼Ó¼º
// ¹Ý È¯ °ª :
function mouseOver(obj, bool)
{
	if(bool)
		obj.src=obj.src.replace("off","oon");
	else
		obj.src=obj.src.replace("oon","off");
}

// ÇÔ¼öÀÌ¸§ : rot_notice(),rot_site()
// ÇÔ¼ö¼³¸í : ¸ÞÀÎÆäÀÌÁö °øÁö»çÇ× ·Ñ¿À¹ö (Àü »çÀÌÆ®¿¡ Àû¿ë)
// ÀÔ ·Â °ª : °´Ã¼, ¼Ó¼º
// ¹Ý È¯ °ª :

function rot_notice(aa){
	notice1.style.display='none';
	notice2.style.display='none';

	if (aa==2) {
		notice2.style.display='block';
    }else {
		notice1.style.display='block';
	}
}

function rot_site(bb){
	site1.style.display='none';
	site2.style.display='none';
	site3.style.display='none';
	site4.style.display='none';
    site5.style.display='none';
    site6.style.display='none';

	if (bb==2) {
		site2.style.display='block';
	}else if (bb==3) {
		site3.style.display='block';
	}else if (bb==4) {
		site4.style.display='block';
	}else if (bb==5) {
		site5.style.display='block';
	}else if (bb==6) {
		site6.style.display='block';
	}else {
		site1.style.display='block';
	}
}
