function banner(menuName){
	var main_url = '';
	if(menuName=="m1"){ //플래쉬에서 입력된 변수값
		location.href="http://openmarketminishop.cgimall.co.kr/list.php?category=9"; //이동할 페이지 주소
	}else if(menuName=="m2"){ //플래쉬에서 입력된 변수값
		window.open("http://openmarketminishop.cgimall.co.kr/list.php?category=5"); //이동할 페이지 주소
	}else if(menuName=="m3"){ //플래쉬에서 입력된 변수값
		location.href="http://openmarketminishop.cgimall.co.kr"; //이동할 페이지 주소
	}else if(menuName=="m4"){ //플래쉬에서 입력된 변수값
		location.href="http://openmarketminishop.cgimall.co.kr/list.php?category=4"; //이동할 페이지 주소
	}else if(menuName=="m5"){ //플래쉬에서 입력된 변수값
		location.href="http://openmarketminishop.cgimall.co.kr/list.php?category=5"; //이동할 페이지 주소
	}else if(menuName=="m6"){ //플래쉬에서 입력된 변수값
		location.href="http://openmarketminishop.cgimall.co.kr/list.php?category=1"; //이동할 페이지 주소
	}else if(menuName=="m7"){ //플래쉬에서 입력된 변수값
		location.href="http://openmarketminishop.cgimall.co.kr"; //이동할 페이지 주소
	}else if(menuName=="m8"){ //플래쉬에서 입력된 변수값
		location.href="/"; //이동할 페이지 주소
	}else if(menuName=="m9"){ //플래쉬에서 입력된 변수값
		location.href="/"; //이동할 페이지 주소
	}else if(menuName=="m10"){ //플래쉬에서 입력된 변수값
		location.href="/"; //이동할 페이지 주소
	}else if(menuName=="m11"){ //플래쉬에서 입력된 변수값
		location.href="/"; //이동할 페이지 주소
	}else{
		alert('페이지를 찾을 수 없습니다.'); //해당변수가 없을시 메시지출력
	}
}

//장창학 추가- 지도팝업창 최대화
function window_open_map(){
  var targeturl="#" // URL경로
   newwin=window.open("","","scrollbars")
  if (document.all){
   newwin.moveTo(0,0)
   newwin.resizeTo(screen.width,screen.height)
  }
   newwin.location=targeturl
 }
