<!------------------------ ¼ýÀÚ¸¸ ÀÔ·Â¹Þ°Ô ÇÏ´Â ½ºÅ©¸³Æ® ---------------------------------->
function ValidateNumber() {
	var e1 = event.srcElement;
	var num ='0123456789';
	event.returnValue = true;

	for (var i=0;i<e1.value.length;i++)
	{
		if(-1 == num.indexOf(e1.value.charAt(i)))
		event.returnValue = false;
	}

	if (!event.returnValue)
	{
		alert('¼ýÀÚ¸¸ °¡´ÉÇÕ´Ï´Ù.');
		return false;
	}
}
<!--------------------------------------------------------------------------------------->

<!-- ¸¶¿ì½º¸¦ Å¬¸¯ÇÏ¸é ¾ø¾îÁö°í ¾Æ¹« ±ÛÀÚµµ ¾È¾²°í ³ª¿À¸é ´Ù½Ã ±âº»°ªÀÌ º¹¿øµÇ´Â ½ºÅ©¸³Æ® -->
function clearField(field){
	if(field.value == field.defaultValue)  field.value = '';
}

function checkField(field){
	if(field.value == '')
		field.value = field.value = field.defaultValue;
}
<!--------------------------------------------------------------------------------------->


<!-- »õ·Î¿î Ã¢À» ¶ç¿ì´Â ½ºÅ©¸³Æ® ±âº»ÀûÀ¸·Î toolbar,status,MenuBar°¡ ¾ø°í Scrollbar ¿Í »çÀÌÁî´Â Á¶ÀýÇÒ ¼ö ÀÖ´Ù-->
function newwindow(URL,width,height) {
	var str;
	str="'top=50,left=30,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,";
	str=str+"width="+width;
	str=str+",height="+height+"'";
	window.open(URL,'',str);
}
<!--------------------------------------------------------------------------------------->

<!-- Æ¯Á¤ ÆäÀÌÁö¿¡ »ç¿ëÇÏ´Â »õ·Î¿î Ã¢À» ¶ç¿ì´Â ½ºÅ©¸³Æ®. ±âº»ÀûÀ¸·Î toolbar,status,MenuBar,scrollbars,»çÀÌÁîÁ¶ÀýÇÒ ¼ö ¾ø°í Ã¢ÀÇ Å©±â¸¦ ÁöÁ¤µÈ Å©±â·Î ÇÑ´Ù.-->
var child = null;
var count = 0;
function newwindow_fixsize(URL) {
	var str;
	var childname = 'MultiView' + count++;
	str="'top=5,left=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,";
	str=str+"width=339";
	str=str+",height=379'";
	if(child != null) {
		if(!child.closed){
			child.close();
		}
	}
	URL="http://www.waterski.co.kr/"+URL;
	child = window.open(URL,childname,str);
}
<!--------------------------------------------------------------------------------------->
