function inputMouseDown(style, obj)
{		
	if((style == "id") && (obj.value == "이름"))
	{		
			obj.value = "";
	}
	else if((style == "password") && (obj.value == "0000"))
	{		
			obj.value = "";
	}
}
function write_convertArchive(link,date,cnt)
{
	var aa = date.split("/");
	var hdate = aa[0] + "년 " + aa[1] + "월";
	document.write(	"<div class='archive_window_data'><a href='"+link+"'>"+ hdate +" ("+ cnt + ")</a></div>" );
}

function checkcomment(id, password, hompage)
{
	var obj = document.getElementById(id);
	if((obj!=null) && (obj.value == "이름"))
	{
		alert("이름을 입력해주십시오");
		return false;
	}
	obj = document.getElementById(password);
	if((obj!=null) && (obj.value == "0000"))
	{
		obj.value = "";
	}
	
	obj = document.getElementById(hompage);
	if((obj!=null) && (obj.value == "http://"))
	{
		obj.value = "";
	}

	return true;
}