	<!--
		//RollOver
		function M_ImgChange(I_Src,I_Name,I_State,L_Name)
		{
			if(document.images)
			{
				document[I_Name].src = I_Src;
				if(I_State=="1")
				{
					document.all[L_Name].style.display="";
				}
				else if(I_State=="0")
				{
					document.all[L_Name].style.display="none";
				}
			}
		}
		
		
		//Login_Check
		function Ent_Press()
		{
			var a = event.keyCode;
			if(a == 13)
			{
				Login_CHK();
			}
		}
		
		//Layer
		function Layer_SH(L_NM,L_SH, arg, w_val, flag)
		{
			if(flag==0)
			{	
				var point_val = fGetXY(document.all(arg)); 
				document.all[L_NM].style.left = point_val.x - w_val;
				document.all[L_NM].style.display = L_SH;
			}
			else
				document.all[L_NM].style.display = L_SH;
		}
		
		
		//Layer2
		var browser=navigator.appName;
		
		function find(n, d) { 
		
				var p,i,x;  
		
				if(!d) d=document; 
		
				if((p=n.indexOf("?"))>0&&parent.frames.length) {
		
					d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);
		
						}
		
				if(!(x=d[n])&&d.all) x=d.all[n]; 
		
				for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
		
				for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=find(n,d.layers[i].document); return x;
		
				}
		
		
		
		function show() { 
		
		if(browser.substring(0,8)=="Netscape")
		
			{}else{   
		
			var i,p,v,obj,args=show.arguments;
		
			for (i=0; i<(args.length-2); i+=3) 
		
			if ((obj=find(args[i]))!=null) { v=args[i+2];
		
				if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
		
				obj.visibility=v; }
		
				}
		
				}
		
	
		//Image Change
		function image_change(image_file,image_width,image_height,file_location)
		{
			img = document.middle_image;
			form = document.big_img_form;
			
			img2 = eval("document." + image_file);
			img3 = eval("document." + document.big_img_form.image_id.value);
	
			img.src=img2.src;
			img.width=image_width;
			img.height=image_height;
			
			img2.border=1;
			
			form.image_id.value=image_file;
			form.image_width.value=image_width;
			form.image_height.value=image_height;
		}
		
		function change_default()
		{
			img = eval("document." + document.forms[0].image_id.value);
			
			if(img)
			{
				if(document.big_img_form.image_width.value)
					document.middle_image.width = document.big_img_form.image_width.value;
				if(document.big_img_form.image_width.value)
					document.middle_image.width = document.big_img_form.image_height.value;
				
				img.border=0;
				
				if(document.middle_image.src != img.src)
					document.middle_image.src=img.src;
				
				for(i=0; i<document.images.length; i++)
				{
					if(document.images[i].name == document.forms[0].image_id.value)
					{
						document.images[i].border=1;
						return;
						break;
					}
				}
				
				document.image0.border=0
			}
		}


function xwzRollingImageTrans(imageName, thumbnailName, eventName, winName){ // ¸ÞÀÎÀÌ¹ÌÁö ·Ñ¸µ
	this.Index = 0;
	this.ListItem = new Array(0);
	this.Name = imageName;
	this.Thumbnail = thumbnailName;
	this.tmRotate = null;
	this.nInterval = 6000;
	this.eventName = eventName;
	this.winTarget = winName;
	
	if(window.xwzRollObject == null) window.xwzRollObject = new Array(0);
	window.xwzRollObject[this.Name] = this;

	// ÃÊ±âÈ­ ÇÔ¼ö
	this.install = function(){
		window.document.images[this.Name].onclick=this.goLink;
		if(this.ListItem.length == 0) return;
		this.tmRotate = setTimeout("window.xwzRollObject['" + this.Name + "'].rotateTrans()" , this.nInterval);
		var icons = document.getElementsByName(this.Thumbnail);
		for(var i = 0; i < icons.length; i++){
			if(this.eventName == 'over') icons[i].onmouseover=new Function("window.xwzRollObject['"+this.Name+"'].alterImage(" + i + ")");
			else icons[i].onclick=new Function("window.xwzRollObject['"+this.Name+"'].alterImage(" + i + ")");
		}
	}
	// ÇØ´ç ¾ÆÀÌÅÛ Ãß°¡ 
	this.addItem = function(Link, ImgSrc, Icon1, Icon2 ){
		var itmX = {Link : "", ImgSrc : "", DefIcon : "", OvrIcon : ""};
		itmX.Link = Link;
		itmX.ImgSrc = ImgSrc;
		itmX.DefIcon = Icon1;
		itmX.OvrIcon = Icon2;
		this.ListItem[this.ListItem.length] = itmX;
	}
	// ¼öµ¿ º¯°æ 
	this.alterImage = function(index){
		var icons = document.getElementsByName(this.Thumbnail);
		if(this.Index == index) return;
		if(this.ListItem[this.Index].DefIcon !="") icons[this.Index].src = this.ListItem[this.Index].DefIcon;

		this.Index = index;
		this.imgTrans();
		clearTimeout(this.tmRotate);
		this.tmRotate = null;
		this.tmRotate = setTimeout("window.xwzRollObject['" + this.Name + "'].rotateTrans()" , this.nInterval);

	}

	// ¸µÅ© Å¬¸¯
	this.goLink = function(){
		var name = this.getAttribute('name');
		var xwzRoll = window.xwzRollObject[name];
		clearTimeout(xwzRoll.tmRotate);
		xwzRoll.tmRotate = null;

		if(xwzRoll.winTarget == '' || xwzRoll.winTarget == null){
			window.location.href=xwzRoll.ListItem[xwzRoll.Index].Link;
		}else if(xwzRoll.winTarget.toLowerCase().indexOf("javascript") == 0){
			alert( winTarget.replace(/javascript:/gi,'') )
		}else{
			window.open(xwzRoll.ListItem[xwzRoll.Index].Link, xwzRoll.winTarget);
		}
	}

	//
	this.rotateTrans = function(){
		var icons = document.getElementsByName(this.Thumbnail);
		var itmX = this.ListItem[this.Index];
		if(itmX.DefIcon !="") icons[this.Index].src = itmX.DefIcon;

		this.Index +=1;
		if(this.Index >= this.ListItem.length) this.Index = 0;

		this.imgTrans();
		
		clearTimeout(this.tmRotate);
		this.tmRotate = null;
		this.tmRotate = setTimeout("window.xwzRollObject['" + this.Name + "'].rotateTrans()" , this.nInterval);
	}

	//
	this.imgTrans = function(){
		var icons = document.getElementsByName(this.Thumbnail);
		var itmX = this.ListItem[this.Index];
		if(itmX.OvrIcon !=null  && itmX.OvrIcon !="") icons[this.Index].src = itmX.OvrIcon;
		try{
			document.images[this.Name].filters[0].apply();
			document.images[this.Name].src = itmX.ImgSrc;
			document.images[this.Name].filters[0].play();
		}catch(e){
			document.images[this.Name].src = itmX.ImgSrc;
		}
	}
}
	//-->