function detail(url) {
	var w = window.open(url,"seminar","width=660,height=500,left=0,top=0,scrollbars=yes");
	w.focus();
}


function db(url) {
	var w = window.open(url,"db","width=660,height=350,left=0,top=0,scrollbars=yes");
	w.focus();
}

function merit_publish(url) {
	var w = window.open(url,"merit_publish","width=660,height=500,left=0,top=0,scrollbars=yes,resizable=yes");
	w.focus();
}

function merit_product(url) {
	var w = window.open(url,"merit_product","width=660,height=500,left=0,top=0,scrollbars=yes,resizable=yes");
	w.focus();
}

function merit_voice(url) {
	var w = window.open(url,"merit_voice","width=660,height=500,left=0,top=0,scrollbars=yes,resizable=yes");
	w.focus();
}

function point(url) {
	var w = window.open(url,"point","width=750,height=750,left=0,top=0,scrollbars=yes,resizable=yes");
	w.focus();
}

/* page up
----------------------------------------------- */
function pageup(e) {
			UAGENT = navigator.userAgent.toUpperCase();
			if (UAGENT.indexOf("MSIE") >=0) { posi = event.y; }
			else { posi = e.pageY; }
			moveObje(posi);
		}
	
		function moveObje(position) {
			move = position / 10;
			point = parseInt(position - move);
			scrollTo(0,point);
			if (point > 0) { setTimeout("moveObje(point)",10); }
		}
