function full_screen_cyberct(target,map,poi,style,x,y,z) {
	/*
 switch (target) {
  // ¼ö¿ø½ÃÃ»
  case "suwon" :   
	  var url="http://map.suwon.ne.kr/ehmap/"+map+"/eh_"+map+"_main.asp?objname="+poi+"&mapstyle="+style;
		var screen_w=window.screen.availWidth - 10;
		var screen_h=window.screen.availHeight - 30;
		var map_str="width=" + screen_w + ", height=" + screen_h + ", top=0, left=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, titlebar=no";
		cyberctmap=window.open(url,"ctmap",map_str);
		if (cyberctmap.opener != self) {
			cyberctmap.close();
			cyberctmap=window.open(url,"ctmap",map_str);
		}
 		break;
	
	default :
	  if(map == "dongducheon" && style == "") {
	  	style="_office"
	  }
		var url="http://cyberct.net/script/js/move.asp?target=" + target + "&map=" + map + "&poi=" + poi + "&style=" + style + "&x=" + x + "&y=" + y + "&z=" + z;
		var screen_w=window.screen.availWidth - 10;
		var screen_h=window.screen.availHeight - 30;
		var map_str="width=" + screen_w + ", height=" + screen_h + ", top=0, left=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, titlebar=no";
		cyberctmap=window.open(url,"ctmap",map_str);
		if (cyberctmap.opener != self) {
			cyberctmap.close();
			cyberctmap=window.open(url,"ctmap",map_str);
		}
 }
 */
 
	if (map == "dongducheon" && style == "") {
		style = "_office"
	}
	
	var url = "http://cyberct.net/script/js/move.asp?target=" + target + "&map=" + map + "&poi=" + poi + "&style=" + style + "&x=" + x + "&y=" + y + "&z=" + z;
	var screen_w = window.screen.availWidth - 10;
	var screen_h = window.screen.availHeight - 30;
	
	if (map == "cheorwon" && style == "_office") {
		var screen_w2, screen_h2
		if (screen_w >= screen_h) {
			screen_h2 = screen_h;
			screen_w2 = (screen_h * 4) / 3;
			if (screen_w2 > screen_w) { screen_w2 = screen_w; }
		} else {
			screen_w2 = screen_w;
			screen_h2 = (screen_w * 3) / 4;
			if (screen_h2 > screen_h) { screen_h2 = screen_h; }
		}
		screen_w = screen_w2;
		screen_h = screen_h2;
	}
	
	var map_str = "width=" + screen_w + ", height=" + screen_h + ", top=0, left=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, titlebar=no";
	
	cyberctmap = window.open(url,"ctmap",map_str);
	if (cyberctmap.opener != self) {
		cyberctmap.close();
		cyberctmap = window.open(url,"ctmap",map_str);
	}
}

function full_screen_cyberct_url(mapUrl) {
	var url = mapUrl;
	var screen_w = window.screen.availWidth - 10;
	var screen_h = window.screen.availHeight - 30;
	var map_str = "width=" + screen_w + ", height=" + screen_h + ", top=0, left=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, titlebar=no";
	cyberctmap = window.open(url,"ctmap",map_str);
	if (cyberctmap.opener != self) {
		cyberctmap.close();
		cyberctmap = window.open(url,"ctmap",map_str);
	}
}