<!--
/*--------------- ÆäÀÌÁö ±âº»(°ø¿ë)	---------------*/

	// Å¸ÀÌÆ²
	document.title="Digital Test Equipment & Technology";

	// ¸µÅ© Å×µÎ¸® Á¦°Å
	/*
	function AllBlur() {
		if(event.srcElement.tagName == "A" || event.srcElement.tagName == "IMG")
		document.body.focus();
	}
	document.onfocusin = AllBlur;
	*/
	// ÆË¾÷
	function MM_openBrWindow(theURL,winName,features) {
	  window.open(theURL,winName,features);
	}
	
	// ·Î±×¾Æ¿ô
	function Logout(obj) {
		if(confirm('Sure logout?')==1) {
			location.href="/include/logout.asp?type=" + obj;
		}
	}

/*---------------	Æû°ü·Ã		---------------*/

	// °ø¹éÈ®ÀÎ
	function CheckNull( data ) {
		for ( var i = 0 ; i < data.length ; i++ ){
			if ( data.substring( i, i+1 ) != " " )
			return false;
		}
	return true;
	}

	// ¼ýÀÚ¸¸ ÀÔ·Â
	function OnlyNumber() {
		if ((event.keyCode<48)||(event.keyCode>57)) {	
			alert("Only Numberic.");
			event.returnValue=false;
			}
	}
//-->
