function OnLogin()
{
	f = document.Form1;
	if(!check_space(f.Login1_txtid.value))
	{
		alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ¼¼¿ä!");
		f.Login1_txtid.focus();
		return false;
	}
	if(!check_space(f.Login1_txtpwd.value))
	{
		alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏ¼¼¿ä!");
		f.Login1_txtpwd.focus();
		return false;
	}
	return;		
}

function catalog_pop()
{
	catalogWIN = window.open("/flash/catalog.html", "catalog", "scrollbars=auto, resizable=no, width=1000, height=690 ,top=0,left=0");
	catalogWIN.focus();
}

function check_space(str)
{	
	if (str.search(/\S/)<0)
	{
		return false;
	}
	var temp=str.replace(' ','');
	if (temp.length == 0)
	{
		return false;
	}
	return true;

}


function IsDigit(fl)
{
	t = fl;
	for(i=0;i<t.length;i++)
	if (t.charAt(i)<'0' || t.charAt(i)>'9')
	{
		fl.value="";
		return false ;
	}                              
	return true;
}

function CallMap(mtcode) 
{
	var larg_schermo = screen.availWidth - 10;
	var altez_schermo = screen.availHeight - 30;
	var  per = (altez_schermo/larg_schermo)*100;
	var scrollflag = "no";
	if(per < 70) 
	{
		scrollflag = "yes";
		
	}
	var url = "/Navigation/NvMap.aspx?mtcode="+mtcode;
	mapWindow = window.open(url, "NepaNavigation", "scrollbars="+ scrollflag +", resizable=no, width="+ larg_schermo +",height="+ altez_schermo +" ,top=0,left=0");
	mapWindow.focus();
} 


function NepaGationDown()
{		
	document.location.href="/CD/NepaDownLoad.aspx";
}