/*****************************************************************************/
// [JAVASCRIPT : BASIC]
// Á¦ÀÛÀÚ : ±èÁØ¼ö ´ë¸® (ITLine Creative Team. 02-3438-5554. js.kim@itline.com
// ÀÛ¼ºÀÏ : 2008.10.2.
/*****************************************************************************/

	function openAlert(_u) {
		window.open(_u,"popup","left=500,top=200,width=330,height=190,scrollbars=no,status=no,resizable=no");
	}
	
	function openAlert02(_u) {
		window.open(_u,"popup","scrollbars=yes,status=yes,resizable=yes,menubar=yes,toolbar=yes,location=yes");
	}

	function showLayer(myLayer){
			document.getElementById(myLayer).style.display="";
			if(screen.width<1000||screen.height<1000){
				document.getElementById(myLayer).style.width="1024px";
				document.getElementById(myLayer).style.height="1000px";
				document.getElementById(myLayer).style.right="1024px";
				document.getElementById(myLayer).style.bottom="1024px";
			}
	}

	function hideLayer(myLayer){
			document.getElementById(myLayer).style.display="none";
	}


	//Onfocus Blur
	function bluring(){ 
		if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
	} 
	document.onfocusin=bluring; 



