function GoMap(name, addr) {
	content_Map = window.open('/mapbrowser/default.asp?search_value=' + escape(name) + '&addr=' + escape(addr), 'content_Map', 'scrollbars=0,left=0,top=0,width=1024,height=650');
	content_Map.focus();
}

function GoMapSn(sn) {
	content_Map = window.open('/mapbrowser/default.asp?sn=' + sn, 'content_Map', 'scrollbars=0,left=0,top=0,width=1024,height=650');
	content_Map.focus();
}

function GoPrint(cat_id, content_id) {
	content_print = window.open('/common/lib/print.asp?category_id=' + cat_id + '&content_id=' + content_id, 'content_print', 'scrollbars=1,left=0,top=0,width=600,height=600');
	content_print.focus();
}

function GoBlog(cat_id, content_id, url) {
	content_blog = window.open('/common/lib/blog_scrap.asp?category_id=' + cat_id + '&content_id=' + content_id + '&url=' + escape(url), 'content_blog', 'scrollbars=1,left=0,top=0,width=450,height=300');
	content_blog.focus();
}

function GoMail(cat_id, content_id) {
	content_mail = window.open('/common/lib/mail.asp?category_id=' + cat_id + '&content_id=' + content_id, 'content_mail', 'scrollbars=0,left=0,top=0,width=580,height=350');
	content_mail.focus();
}

function GoLogin(return_url) {
	if (confirm('\n로그인 후 사용 가능합니다.\n\n로그인 하시겠습니까?')) {
		top.location.href = '/common/login/login.asp?return_url=' + escape(return_url);
	} else {
		return;
	}
}

function CheckALLSearch(theForm) {
	if (Len(theForm.search_value.value) == 0) {
		alert('검색어를 입력하여 주십시요.');
		theForm.search_value.focus();
		return false;
	}

	return true;
}