<!--
function messageParsing(xml) {
	var root = xml.getElementsByTagName("messages")[0];
	var message = root.getElementsByTagName("message")[0].firstChild.nodeValue;
	//Web.message({title:'Á¤º¸',msg:message});
	Web.information({title:'Á¤º¸',msg:message,width:200});
}

function popupMessage(txt) {
	Web.Window.message(txt,{width:300,height:170});
}

function popupLoading(bul) {
	Web.Window.loading(bul,{width:300,height:170});
}

function back() {
	window.history.back();
}

function link(v) {
	Web.Location.link(v);	
}
function link_new(v) {
window.open(v,"","toolbar=no,scrollbars=yes,resizable=yes,target=_blank");
}

function alertAndBack(txt) {
	alert(txt);
	window.history.back();
}

function moveTop() {
	window.open('./', '_top');
}

function adminlogin() {
	window.open('admin.do', '_top');	
}

function managerlogin() {
	window.open('manager.do', '_top');	
}



//-->