//Å¸ÀÌÆ²¹Ù 5°³ ¸Þ¼¼Áö
<!-- 
var numb = 4 // Å¸ÀÌÆ²·Î »ç¿ëÇÒ ¸Þ¼¼ÁöÀÇ °¹¼ö
title_text = new Array();

// ¸Þ¼¼ÁöµéÀ» ¼³Á¤ ÇÏ¼¼¿ä

title_text[0] = "È¨ÆäÀÌÁö ¹æ¹®À» È¯¿µÇÕ´Ï´Ù.";
title_text[1] = "³×Æ¼Áð ¿©·¯ºÐÀ» È¯¿µÇÕ´Ï´Ù.";
title_text[2] = "¿©·¯ºÐÀÇ ¹æ¹®À» È¯¿µÇÕ´Ï´Ù.";
title_text[3] = "³×Æ¼Áð ¿©·¯ºÐÀ» È¯¿µÇÕ´Ï´Ù.";
title_text[4] = "È¨ÆäÀÌÁö ¹æ¹®À» È¯¿µÇÕ´Ï´Ù.";

var doit = title_text[Math.round(Math.random()*numb)];
document.write("<title>[ÆÄ¿öºô¸®Áö]  - "+doit+"</title>");
// °øÅëÀûÀ¸·Î º¸¿©Áú Å¸ÀÌÆ² À» ¼³Á¤ ÇÕ´Ï´Ù
// -->


<!-- Á¦¸ñÇ¥½ÃÁÙ
var Status_titles=new Array();
Status_titles[0]="ÀÏ¿äÀÏ";
Status_titles[1]="¿ù¿äÀÏ";
Status_titles[2]="È­¿äÀÏ";
Status_titles[3]="¼ö¿äÀÏ";
Status_titles[4]="¸ñ¿äÀÏ";
Status_titles[5]="±Ý¿äÀÏ";
Status_titles[6]="Åä¿äÀÏ";
var today=new Date();
window.status=Status_titles[today.getDay()];
//document.title=Status_titles[today.getDay()]; 
// Á¦¸ñÇ¥½ÃÁÙ¿¡ º¸¿©ÁÖ·Á¸é ÀÌ ÄÚµå¸¦ »ç¿ëÇÏ¼¼¿ä

// -->

<!--  ÀÌ¹ÌÁöÅ¬¸¯½Ã Å×µÎ¸® ¾ø¾Ö±â 
function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 
//--> 

<!-- ÇÃ·¡½Ã Å×µÎ¸®¹æÁö
function layerRestore(thisLayer)
{
	if (thisLayer.length > 0)
	{
		for (var i = 0, j = 0; i < thisLayer.length; i++)
		{
		    if (thisLayer[i])
		    {
			    thisLayer[i].outerHTML	= thisLayer[i].innerHTML;
			}
		}
	}
	else if (thisLayer)
	{
		thisLayer.outerHTML	= thisLayer.innerHTML;
	}
}



<!-- À¥ÇÇ¾È Æ÷Æ®Æú¸®¿À ÆË¾÷Ã¢ ¶ç¿ì±â
function openurl(targetURL, name, width, height,scroll) {
  	Win_value = "width=" + width + ", height="+  height + ", scrollbars="+scroll+", resizable=no, copyhistory=no, top=" + ((screen.height/2)-(height/2)) + ",left=" +  ((screen.width/2)-(width/2));
  	var newWin=window.open(targetURL, name , Win_value)
  }
// -->


function scroll(){
    var a=document.body.scrollTop+70 
        // 70 Àº ¹è³ÊÀÇ ±âÁØÀ§Ä¡°¡ À§ÂÊ¿¡¼­ 70 ÇÈ¼¿ ¶³¾îÁöµµ·Ï ¼³Á¤ÇÑ °ÍÀÔ´Ï´Ù
    menu.style.top=a
}