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

	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

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

	function paopenPhoto(imageno,caption, size) 
	{   
		size = size*2 + 90;
		var winl = (screen.width - 840) / 2;
		var wint = (screen.height - size) / 2;
		winprops = 'location=0, menubar=0, scrollbars=0, resizable=0, width=840, height='+size+' ,top='+wint+',left='+winl

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

// ÀÚ¼¼È÷ + ½½¶óÀÌµå¼î
	function openSlide(codestr,order) {   
		window.open('/plant/photoslide.php?codestr='+codestr+'&order='+order, 'slide', 'location=0, menubar=0, scrollbars=0, resizable=0, width=670, height=550');
	}
	
