
/* Background Image Cache Bug Fix */
(function() { /*Use Object Detection to detect IE6*/
	var m = document.uniqueID			/*IE*/
			&& document.compatMode		/*>=IE6*/
			&& !window.XMLHttpRequest	/*<=IE6*/
			&& document.execCommand;
	try {
		if(!!m) m("BackgroundImageCache", false, true); /* = IE6 only */
	} catch(e) {};
})();

// 에러메세지
var formError = {};

$(function() { 
	// 에러 출력, 포커싱
	$.each(formError, function(k, v) {
		alert(v);
		$('#'+k).select();
	});
 
});
	 

 
 
function moveUrl(form ) {
 var id=form.options[form.selectedIndex].value;
 Url = "sub02.php?id="+id; 
	  location.href=Url;
 
}
function moveUrl2(form) {
 var id=form.options[form.selectedIndex].value;
 Url = "sub04.php?id="+id; 
	  location.href=Url;
 
}
 
 function moveUrl3(form) {
 var id=form.options[form.selectedIndex].value;
 Url = "sub01.php?id="+id; 
	  location.href=Url;
 
}

function open_fullscreen() {
fullscreen = window.open('/mapinfo/map_03.html', "fullscreen", 'top=0,left=0,width='+(screen.availWidth-10)+',height='+(screen.availHeight-48)+',fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrolling=0');
}
 

function  gonext(str1,str2){
	location.href=str1+"?nowyear="+str2;
}

function  gonext2(str1,str2){
	location.href=str1+"?id="+str2;
}
