function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/*
function initHeight(){
	var checkHeight = parseInt(document.body.clientHeight);
	if(checkHeight<600) document.getElementById("flTbl").style.height = "650";
}
*/
function initHeightMain(){

	var h = document.body.clientHeight;
	var w = document.body.clientWidth;
	var el = document.getElementById("mainSWF");
	
	if(h<540 + 75 + 73 ){
		el.style.height = "540px";
	}else{
		el.style.height = h - 73 -75;
	}	
}


function initHeight(){

	var h = document.body.clientHeight;
	var w = document.body.clientWidth;
	var el = document.getElementById("wrapper");
	
	if(h<650 ){
		el.style.height = "650px";
	}else{
		el.style.height = "100%";
	}

	if(w<980){
		el.style.width = "980px";
	}else{
		el.style.width = "100%";
	}
	
}

function getCookie(name) {
	var nameOfCookie = name + "=";
	var x = 0;
	while (x <= document.cookie.length) {
		var y = (x + nameOfCookie.length);
		if (document.cookie.substring(x, y) == nameOfCookie) {
			if ((endOfCookie = document.cookie.indexOf(";", y)) == -1)
				endOfCookie = document.cookie.length;
			return unescape(document.cookie.substring(y, endOfCookie));
		}
		x = document.cookie.indexOf(" ", x) + 1;
		if (x == 0)
			break;
	}
	return "";
}

function FindShop() {
  location.href = "/customer/store_map.asp";
  //window.open("/customer/popup_store_map.asp","fshop",'status=1,titlebar=no,directories=no,scrollbars=1,resizable=no,menubar=no,width=1010,height=700,top=0,left=0');
}


function comma(v1){ //¼ýÀÚ¿Í ÄÞ¸¶¸¦ ÂïÀ»ÀÚ¸®¼ö¸¦ ¸Å°³º¯¼ö·Î ¹ÞÀ½ 
	v2 = 3;
	var str=new Array(); //ÄÞ¸¶½ºÆ®¸µÀ» Á¶ÇÕÇÒ ¹è¿­ 
	v1=String(v1); //¼ýÀÚ¸¦ ½ºÆ®¸µÀ¸·Î º¯È¯ 

	for(var i=1;i<=v1.length;i++){ //¼ýÀÚÀÇ ±æÀÌ¸¸Å­ ¹Ýº¹ 
		if(i%v2) str[v1.length-i]=v1.charAt(v1.length-i); //ÀÚ¸®¼ö°¡ ¾Æ´Ï¸é ¼ýÀÚ¸¸»ðÀÔ 
		else  str[v1.length-i]=','+v1.charAt(v1.length-i); //ÀÚ¸®¼ö ÀÌ¸é ÄÞ¸¶±îÁö »ðÀÔ 
	} 

	return str.join('').replace(/^,/,''); //½ºÆ®¸µÀ» Á¶ÇÕÇÏ¿© ¹ÝÈ¯ 
} 

