
// ÀÌ¹ÌÁö¸í ÅøÆÁ
function show(str)
{
	document.onmousemove=movetip;
	document.all.info.innerText=str;
	document.all.info.style.display = "inline"
}
function hide()
{
	document.all.info.style.display="none"
}
function movetip()
{
	document.all.info.style.pixelTop=event.y+document.body.scrollTop+10;
	document.all.info.style.pixelLeft=event.x+document.body.scrollLeft+10;
}

// Å« ÀÌ¹ÌÁö º¸¿©ÁÖ±â
function openPhoto(imageno,caption) 
{
	var winl = (screen.width - 840) / 2;
	var wint = (screen.height - 690) / 2;

	winprops = 'location=0, menubar=0, scrollbars=0, resizable=0, width=840, height=690 ,top='+wint+',left='+winl

	openwin=window.open('/slide/photoview.php?imageno='+imageno+'&caption='+caption, 'view', winprops);
	openwin.focus();
}

// ÀÚ¼¼È÷ + ½½¶óÀÌµå¼î
function openSlide(codestr,order) 
{
	openwin=window.open('/slide/slide_comm.php?codestr='+codestr+'&order='+order, 'slide', 'status=1, location=0, menubar=0, scrollbars=0, resizable=0, width=800, height=490');
	openwin.focus();
}
function openSlide_recur(codestr,order) {   
	openwin=window.open('/slide/slide_recur.php?codestr='+codestr+'&order='+order, 'slide', 'location=0, menubar=0, scrollbars=0, resizable=0, width=800, height=490');
	openwin.focus();
}
