<!--
/********************************************************************************************************************************************

	È¨ÆäÀÌÁö Ã³¸®¿¡ °üÇÑ ÇÔ¼öµé Á¤¸®

********************************************************************************************************************************************/


	// ¸µÅ© Á¡¼± Ã³¸®
	function gfnLinkBlur()
	{
		for(var i = 0; i<document.links.length; i++)
		{
			document.links[i].onfocus	= document.links[i].blur;
		}
	}



	// ÇØ´ç ÀÌ¸§ÀÇ °´Ã¼ °¡Áö°í¿À±â
	function gfnGetObject(strName)
	{
		var objObject	= null;
		
		if(document.all)
			objObject	= document.all(strName);
		else if(document.getElementById)
			objObject	= document.getElementById(strName);

		
		if(objObject == null)
		{
			for(var i=0; i < document.all.length; i++)
			{
				if(document.all[i].name == strName)
					objObject	= document.all[i];
			}
		}
		
		return objObject;
	}
	


	// ÇÃ·¡½Ã Ã³¸®
	function gfnFlashFilePrint(strId, strFilePath, nWidth, mHeight, strValue)
	{
		var strAppName		= navigator.appName;
		var fAppVersion		= parseFloat(navigator.appVersion.split("MSIE")[1]);
		
		// ÀÍ½ºÇÃ·Î¾î ¹öÀü¾Æ´Ï°Å³ª ÇÏÀ§ ¹öÀüÀÏ °æ¿ì
		if(strAppName != "Microsoft Internet Explorer" || (strAppName == "Microsoft Internet Explorer" && fAppVersion < 5.5))
		{
			var strPrintTag		= '';
			var strAddValue		= '';
			
			if(strValue != '')
			{
				strAddValue	= ' FlashVars="'+ strValue +'"';
			}
			
			strPrintTag	= '<embed id="'+ strId +'" name="'+ strId +'" src="'+ strFilePath +'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" quality="High" wmode="transparent" width="'+ nWidth +'" height="'+ mHeight +'"'+ strAddValue +'/>';
			
			document.write(strPrintTag);
		}
		// À©µµ¿ì ÀÍ½ºÇÃ·Î·¯ ÀÏ°æ¿ì
		else
		{
			var strOuter	= '<div id="Div_'+ strId +'" name="Div_'+ strId +'"></div>';
			document.write(strOuter);
			
			var objOuter	= gfnGetObject('Div_'+ strId);
			
			if(objOuter)
			{
				var objParam	= new Array;
				var objFlash	= document.createElement('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" name="'+ strId +'" id="'+ strId +'" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="'+ nWidth +'" height="'+ mHeight +'">');
				
				objParam[0]		= document.createElement('<param name="movie" value="'+ strFilePath +'">');
				objParam[1]		= document.createElement('<param name="quality" value="High">');
				objParam[2]		= document.createElement('<param name="wmode" value="transparent">');
				
				if(strValue != '')
				{
					objParam[3]		= document.createElement('<param name="FlashVars" value="'+ strValue +'">');
				}
				
				for(var i=0; i<objParam.length; i++)
				{
					objFlash.appendChild(objParam[i]);
				}
				
				objOuter.appendChild(objFlash);
			}
		}
	}






	// µ¿¿µ»ó Ãâ·Â °ü·Ã
	function gfnMovieFilePrint(strId, strFilePath, nWidth, mHeight, bAutoStart, bShowControls, nVolume)
	{
		var strAppName		= navigator.appName;
		var fAppVersion		= parseFloat(navigator.appVersion.split("MSIE")[1]);


		if (nWidth > 0 && mHeight > 0)
		{
			var strSize		= ' width="' + nWidth + '" height="' + mHeight + '" ';
		}
		else
		{
			var strSize		= '';
		}


		// ÀÍ½ºÇÃ·Î·¯°¡ ¾Æ´Ò°æ¿ì
		if(strAppName != "Microsoft Internet Explorer" || (strAppName == "Microsoft Internet Explorer" && fAppVersion < 5.5))
		{ 
			var dwVolume		= (nVolume * 10) - 1000;
			var strTag		= '<EMBED type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" SRC="'+ strFilePath +'" name="'+ strId +'" autostart='+ bAutoStart +' showcontrols='+ bShowControls +' volume="'+ dwVolume +'" '+ strSize +'></EMBED>';
			
			document.write(Element);
		}
		else // À©µµ¿ì ÀÍ½ºÇÃ·Î·¯ÀÏ °æ¿ì
		{
			var dwVolume		= (nVolume * 10) - 1000; // ¹éºÐÀ²À» 8Çü½ÄÀ¸·Î ¹Ù²ãÁÖ´Â °è»ê½Ä

			document.write('<div id="Div_'+ strId +'" name="Div_'+ strId +'"></div>');

			var objOuter		= gfnGetObject('Div_'+ strId);

			if(objOuter)
			{
				var objParam		= new Array;
				var objMovie		= document.createElement('<OBJECT ID="'+ strId +'" name="' + strId + '" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"	standby="Loading Microsoft?Windows?Media Player components..."  type="application/x-oleobject" '+ strSize +'>');

				objParam[0]		= document.createElement('<PARAM NAME="Filename" VALUE="'+ strFilePath +'">');
				objParam[1]		= document.createElement('<PARAM NAME="AutoStart" VALUE="'+ bAutoStart +'">');
				objParam[2]		= document.createElement('<PARAM NAME="ShowControls" VALUE="'+ bShowControls +'">');
				objParam[3]		= document.createElement('<PARAM NAME="ShowStatusBar" VALUE="'+ bShowControls +'">');
				objParam[4]		= document.createElement('<PARAM NAME="Volume" value="'+ dwVolume +'">');
				
				for(var i=0; i<objParam.length; i++)
				{
					objMovie.appendChild(objParam[i]);
				}
	
				objOuter.appendChild(objMovie);
			}
		} 
	}






	
	
	// ÀÌ¹ÌÁö ·ÎÅ×ÀÌÆ® Ã³¸®
	function fnRotateImage(objImage, strPath, strImages, blsFirst)
	{
		if(objImage.onload != null)
			objImage.onload		= null;
		
		if(!objImage.complete)
		{
			setTimeout(function(){fnRotateImage(objImage, strPath, strImages, false);}, 1000);
			return;
		}
		
		var strNowImageSrc	= '';
		var arrImages		= strImages.split('|');
		var nLength			= arrImages.length;
		
		var blsAutoResize	= parseInt(objImage.getAttribute('autorisize') ? objImage.getAttribute('autorisize') : '0', 10);
		
		if(blsAutoResize == 1)
		{
			var nMaxWidth	= parseInt(objImage.getAttribute('maxwidth') ? objImage.getAttribute('maxwidth') : '0', 10);
			var nMaxHeight	= parseInt(objImage.getAttribute('maxheight') ? objImage.getAttribute('maxheight') : '0', 10);
		}
		else
		{
			var nMaxWidth	= 0;
			var nMaxHeight	= 0;
		}
		
		
		if(nLength > 1)
		{
			var nIndex			= parseInt(objImage.getAttribute('ShowNum') ? objImage.getAttribute('ShowNum') : '0', 10);
			
			if(nIndex >= nLength)
				nIndex	= 0;
			
			var nNowIndex		= nIndex;
			
			if(!blsFirst)
			{
				for(var i=nIndex; i<nLength; i++)
				{
					strNowImageSrc	= arrImages[nIndex];
					
					if(strNowImageSrc != '')
					{
						nIndex	= i;
						break;
					}
					else
					{
						if(nNowIndex == 0)
						{
							if(i == (nLength - 1))
							{
								break;
							}
						}
						else
						{
							if(i == (nLength - 1))
							{
								i = 0;
							}
							else if(i = (nNowIndex - 1))
							{
								break;
							}
						}
					}
				}
				
				if(strNowImageSrc != '')
				{
					if(blsAutoResize == 1 && nMaxWidth > 0 && nMaxHeight > 0)
					{
						var objVirtualImage	= new Image;
						
						objVirtualImage.src		= strPath + strNowImageSrc;
						
						var nWidth	= objVirtualImage.width;
						var nHeight	= objVirtualImage.height;
						
						if(nWidth > nMaxWidth)
						{
							var fRate	= nWidth / nMaxWidth;
							nWidth		= parseInt(nMaxWidth, 10);
							nHeight		= parseInt(nHeight / fRate, 10);
						}
						
						if(nHeight > nMaxHeight)
						{
							var fRate	= nHeight / nMaxHeight;
							nHeight		= parseInt(nHeight, 10);
							nWidth		= parseInt(nWidth / fRate, 10);
						}
						
						if(nWidth == 0 || nHeight == 0)
						{
							nWidth		= nMaxWidth;
							nHeight		= nMaxHeight;
						}
						
						objImage.src	= objVirtualImage.src;
						objImage.width	= nWidth;
						objImage.height	= nHeight;
					}
					else
					{
						objImage.src	= strPath + strNowImageSrc;
					}
				}
			}
			
			objImage.setAttribute('ShowNum', nIndex + 1);
			
			setTimeout(function(){fnRotateImage(objImage, strPath, strImages, false);}, 2000);
		}
		else
		{
			if(blsAutoResize == 1 && nMaxWidth > 0 && nMaxHeight > 0)
			{
				var objVirtualImage	= new Image;
				
				objVirtualImage.src		= objImage.src;
				
				var nWidth	= objVirtualImage.width;
				var nHeight	= objVirtualImage.height;
				
				if(nWidth > nMaxWidth)
				{
					var fRate	= nWidth / nMaxWidth;
					nWidth		= parseInt(nMaxWidth, 10);
					nHeight		= parseInt(nHeight / fRate, 10);
				}
				
				if(nHeight > nMaxHeight)
				{
					var fRate	= nHeight / nMaxHeight;
					nHeight		= parseInt(nHeight, 10);
					nWidth		= parseInt(nWidth / fRate, 10);
				}
				
				objImage.width	= nWidth;
				objImage.height	= nHeight;
			}
		}
	}
	
	function fnResizeImage(objImage)
	{
		var blsAutoResize	= parseInt(objImage.getAttribute('autorisize') ? objImage.getAttribute('autorisize') : '0', 10);
		
		if(blsAutoResize == 1)
		{
			var nMaxWidth	= parseInt(objImage.getAttribute('maxwidth') ? objImage.getAttribute('maxwidth') : '0', 10);
			var nMaxHeight	= parseInt(objImage.getAttribute('maxheight') ? objImage.getAttribute('maxheight') : '0', 10);
		}
		else
		{
			var nMaxWidth	= 0;
			var nMaxHeight	= 0;
		}
		
		
		if(blsAutoResize == 1 && nMaxWidth > 0 && nMaxHeight > 0)
		{
			var objVirtualImage	= new Image;
			
			objVirtualImage.src		= objImage.src;
			
			var nWidth	= objVirtualImage.width;
			var nHeight	= objVirtualImage.height;

			objVirtualImage	= null;
			
			if(nWidth > nMaxWidth)
			{
				var fRate	= nWidth / nMaxWidth;
				nWidth		= parseInt(nMaxWidth, 10);
				nHeight		= parseInt(nHeight / fRate, 10);
			}
			
			if(nHeight > nMaxHeight)
			{
				var fRate	= nHeight / nMaxHeight;
				nHeight		= parseInt(nMaxHeight, 10);
				nWidth		= parseInt(nWidth / fRate, 10);
			}
			
			objImage.width	= nWidth;
			objImage.height	= nHeight;
		}
	}
	
	
	function fnErrorImage(objImage, strPath, strImages, strErrorImage)
	{
		var strNowImageSrc	= '';
		var arrImages		= strImages.split('|');
		var nLength			= arrImages.length;
		var nIndex			= parseInt(objImage.getAttribute('ShowNum') ? objImage.getAttribute('ShowNum') : '0', 10);
		objImage.setAttribute('ShowNum', nIndex + 1);
		
		if(nLength > 1)
		{
			objImage.src	= strErrorImage;
			setTimeout(function(){fnRotateImage(objImage, strPath, strImages, false);}, 2000);
		}
		else
		{
			objImage.src	= strErrorImage;
		}
	}

//Bk Ãß°¡»çÇ× ¾×¼ÇÆË¾÷
	
		function MoveOpen(url,ld,td,w,h,s) {

			var heightspeed = 14; //¸®»çÀÌÁî ¼¼·Î ¼Óµµ
			var widthspeed = 15; //¸®»çÀÌÁî °¡·Î ¼Óµµ
			var leftdist = ld;
			var topdist = td;

			var winwidth = w;
			var winheight = h;
			var sizer = window.open("","","left=" + leftdist + ",top=" + topdist + ",width=1,height=1,scrollbars=" + s );
			
			for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed) {
			sizer.resizeTo("1", sizeheight);
			}
			
			for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed) {
			sizer.resizeTo(sizewidth, sizeheight);
			}
			
			sizer.location = url;
		}	

// Bk ³ó°¡ ÁÖ¼Ò ¸µÅ©
	function fnBkGoto(strBkList)
	{

		switch(strBkList)
		{
		// ºó °ª Ã³¸®
			case '': ; break;

		// 2004³âµµ ³ó°¡
			case	'2004_1': window.open("/myeong/", '_blank'); break;		//¸í¼º³óÀå
			case	'2004_2': window.open("/yang/", '_blank'); break;			//¾ç°¡³×³óÀå
			case	'2004_3': window.open("/soe/", '_blank'); break;			//¼èºÏ³ó¿ø
			case	'2004_4': window.open("/ks/", '_blank'); break;				//¿Á¼º³óÀå
			case	'2004_5': window.open("/miso/", '_blank'); break;			//¹Ì¼Ò³×³óÀå
			case	'2004_6': window.open("/san/", '_blank'); break;			//»ê¶ã³óÀå
			case	'2004_7': window.open("/bae/", '_blank'); break;			//¹è¿¬³óÀå
			case	'2004_8': window.open("/bo/", '_blank'); break;				//ÀÚ¾ç³ó¿ø
			case	'2004_9': window.open("/cham/", '_blank'); break;			//Âü³ª¹«Á¤³óÀå
			case	'2004_10': window.open("/ful/", '_blank'); break;			//Ç®¹«³óÀå
			case	'2004_11': window.open("/gye/", '_blank'); break;			//°è¸í»ê³ó¿ø
			case	'2004_12': window.open("/chung/", '_blank'); break;		//Ã»ÇÏ³ó¿ø
			case	'2004_13': window.open("/jae/", '_blank'); break;			//Àç°æ°ñ³óÀå
			case	'2004_14': window.open("/clean/", '_blank'); break;		//Ã»Á¤³ó¿ø
			case	'2004_15': window.open("/tulbo/", '_blank'); break;			//ÅÐº¸³óÀå
			case	'2004_16': window.open("/eutum/", '_blank'); break;		//À¸¶ä³óÀå
		// 2004³âµµ ³ó°¡

		// 2005³âµµ ³ó°¡
			case	'2005_1': window.open("/duksin/", '_blank'); break;			//´ö½Å»ç°ú¿µ³ó¹ýÀÎ
			case	'2005_2': window.open("/yunrigi/", '_blank'); break;			//¿¬¸®ÁöÀ¯±â³óÀå
			case	'2005_3': window.open("/yongchun/", '_blank'); break;		//¿ëÃµÀ¯±â¿µ³óÁ¶ÇÕ
			case	'2005_4': window.open("/engol/", '_blank'); break;				//Àº°ñ³ó¿ø
			case	'2005_5': window.open("/sanmaru/", '_blank'); break;			//»ê¸¶·ç³ó¿ø
			case	'2005_6': window.open("/gwangil/", '_blank'); break;			//±¤ÀÏ³óÀå
			case	'2005_7': window.open("/riel/", '_blank'); break;					//(ÁÖ)¸®À»³ó»ê
			case	'2005_8': window.open("/jinyongsam/", '_blank'); break;		//Áø¿ë»ï»ç½¿
			case	'2005_9': window.open("/saesong/", '_blank'); break;			//ÃæÁÖ»õ¼ÛÀÌ¹ö¼¸³óÀå
			case	'2005_10': window.open("/itergol/", '_blank'); break;			//ÀÌÅÍ°ñ³ó¿ø
			case	'2005_11': window.open("/sujin/", '_blank'); break;				//¼öÁøÀÌ³×
			case	'2005_12': window.open("/pungyun/", '_blank'); break;		//Ç³³â³ó¿ø
			case	'2005_13': window.open("/cpgugija/", '_blank'); break;		//Ã»Ç³±¸±âÀÚ»ç½¿³óÀå
		// 2005³âµµ ³ó°¡

		// 2006³âµµ ³ó°¡
			case	'2006_1': window.open("/DongSan/", '_blank'); break;		//µ¿»ê³ó¿ø
			case	'2006_2': window.open("/JaeOGae/", '_blank'); break;		//Àç¿À°³³ó¿ø
			case	'2006_3': window.open("/SaeTeo/", '_blank'); break;			//»õÅÍ³ó¿ø
			case	'2006_4': window.open("/SSal/", '_blank'); break;				//È²±Ý³ëÀ»°Ô¸£¸¶´½½Ò
			case	'2006_5': window.open("/Suil/", '_blank'); break;				//¼öÀÏ³óÀå
			case	'2006_6': window.open("/GalGol/", '_blank'); break;			//ÇÑ°¡³×°¥°ñ³óÀå
			case	'2006_7': window.open("/HaNeul/", '_blank'); break;			//ÇÏ´ÃÅ¸¸®¾ß»ýÈ­
			case	'2006_8': window.open("/DunDae/", '_blank'); break;			//µÐ´ë°í±¸¸¶³óÀå
			case	'2006_9': window.open("/NeulPum/", '_blank'); break;		//´ÃÇ°³óÀå
			case	'2006_10': window.open("/STFarm/", '_blank'); break;		//»ûÅÍ³óÀå
			case	'2006_11': window.open("/DaRae/", '_blank'); break;			//´Ù·¡³óÀå
			case	'2006_12': window.open("/RedApple/", '_blank'); break;		//»¡°£»ç°ú¹ãÇÑÅø
			case	'2006_13': window.open("/SeungJu/", '_blank'); break;		//½ÂÁÖ³óÀå
		// 2006³âµµ ³ó°¡
			
		// 2007³âµµ ³ó°¡
			case'2007_1': window.open("/yosep/", '_blank'); break;				//¿ä¼Á»ç°ú³ó¿ø
			case'2007_2': window.open("/nadeuri/", '_blank'); break;			//»ç°ú³ªµå¸®³ó¿ø
			case'2007_3': window.open("/bobae/", '_blank'); break;				//º¸¹è³ó¿ø
			case'2007_4': window.open("/choebuja/", '_blank'); break;			//ÃÖºÎÀÚ³ó¿ø
			case'2007_5': window.open("/eunhasu/", '_blank'); break;			//ÀºÇÏ¼ö³ó¿ø
			case'2007_6': window.open("/hyangsan/", '_blank'); break;		//Çâ»ê³óÀå
			case'2007_7': window.open("/saebom/", '_blank'); break;			//»õº½³ó¿ø
			case'2007_8': window.open("/tohyeon/", '_blank'); break;			//ÅäÇöÇý¹Î³óÀå
			case'2007_9': window.open("/doretgol/", '_blank'); break;			//µµ·¿°ñ³ó¿ø
			case'2007_10': window.open("/ginabap/", '_blank'); break;			//Áö³ª¹ä°ñ³ó¿ø
			case'2007_11': window.open("/jeo/", '_blank'); break;				//Á¦¿À³óÀå
			case'2007_12': window.open("/chamsaem/", '_blank'); break;		//Âü»ù°ñ¿¬²É³ó¿ø
			case'2007_13': window.open("/dongsu/", '_blank'); break;			//µ¿¼­³ó¿ø
			case'2007_14': window.open("/gumhwa/", '_blank'); break;		//±ÝÈ­³óÀå
			case'2007_15': window.open("/daranggol/", '_blank'); break;		//´Ù¶û°ñ³ó¿ø
			case'2007_16': window.open("/deresa/", '_blank'); break;			//µ¥·¹»ç»ç½¿³óÀå
			case'2007_17': window.open("/sarang/", '_blank'); break;			//»ç¶ûÀÇ³ó¿ø
			case'2007_18': window.open("/yeongje/", '_blank'); break;			//¿µÁ¦³ó¿ø
			case'2007_19': window.open("/seseon/", '_blank'); break;			//¼¼¼±³óÀå
			case'2007_20': window.open("/yamujin/", '_blank'); break;			//¾ß¹«Áø»ç°ú³ó¿ø
			case'2007_21': window.open("/jamae/", '_blank'); break;			//ÀÚ¸Å³ó¿ø
			case'2007_22': window.open("/sincheondeung/", '_blank'); break;//Ãµµî»ê³ó¿ø
			case'2007_23': window.open("/ilchon/", '_blank'); break;			//ÀÏÃÌ³ó¿ø
			case'2007_24': window.open("/ausu/", '_blank'); break;				//¾Æ¿ì¼ö³ó¿ø
			case'2007_25': window.open("/haetbit/", '_blank'); break;			//ÇÞºû³óÀå
			case'2007_26': window.open("/yeonghwa/", '_blank'); break;		//¿µÈ­³óÀå
			case'2007_27': window.open("/myeongseong/", '_blank'); break;//¸í¼º³ó¿ø
			case'2007_28': window.open("/seongjang/", '_blank'); break;		//¼ºÀå³ó¿ø
			case'2007_29': window.open("/duri/", '_blank'); break;				//µÎ¸®³óÀå
			case'2007_30': window.open("/chungju/", '_blank'); break;			//ÃæÁÖ»ç°úÁý
			case'2007_31': window.open("/eunbine/", '_blank'); break;			//Àººñ³×³óÀå
			case'2007_32': window.open("/hoam/", '_blank'); break;				//È£¾Ï³ó»ê
			case'2007_33': window.open("/chamchorok/", '_blank'); break;	//ÂüÃÊ·Ï´ÞÃµ°­
		// 2007³âµµ ³ó°¡

		// 2008³âµµ ³ó°¡

			case'2008_1':		window.open('http://www.andreafarm.co.kr','¾Èµå·¹¾Æ³óÀå',''); break;			//¾Èµå·¹¾Æ³óÀå
			case'2008_2':		window.open('http://www.bamgolfarm.co.kr','¹ã°ñ³ó¿ø',''); break;				//¹ã°ñ³ó¿ø
			case'2008_3':		window.open('http://www.beodeul.co.kr','¹öµé³óÀå',''); break;					//¹öµé³óÀå
			case'2008_4':		window.open('http://www.beolmi.co.kr','¹ú¹Ì³ó¿ø',''); break;						//¹ú¹Ì³ó¿ø
			case'2008_5':		window.open('http://www.goodcj.net','ÃÊ·ÏÆÊ',''); break;							//ÃÊ·ÏÆÊ
			case'2008_6':		window.open('http://www.chungjuhofarm.co.kr','ÃæÁÖÈ£³ó¿ø',''); break;		//ÃæÁÖÈ£³ó¿ø
			case'2008_7':		window.open('http://www.daerimfarm.co.kr','´ë¸²³ó¿ø',''); break;				//´ë¸²³ó¿ø
			case'2008_8':		window.open('http://www.haneulso.kr','ÇÏ´Ã¼Ò³ó¿ø',''); break;					//ÇÏ´Ã¼Ò³ó¿ø
			case'2008_9':		window.open('http://www.jayeonfarm.kr','ÀÚ¿¬³ó¿ø',''); break;					//ÀÚ¿¬³ó¿ø
			case'2008_10':	window.open('http://www.kyemyung.co.kr','°è¸í³ó¿ø',''); break;				//°è¸í³ó¿ø
			case'2008_11':	window.open('http://www.ongdalsaem.co.kr','¿Ë´Þ»ù³óÀå',''); break;			//¿Ë´Þ»ù³óÀå
			case'2008_12':	window.open('http://www.lhw7.com','¿À¸®°ñ³ó¿ø',''); break;						//¿À¸®°ñ³ó¿ø
			case'2008_13':	window.open('http://www.pungsanfarm.co.kr','Ç³»ê³ó¿ø',''); break;			//Ç³»ê³ó¿ø
			case'2008_14':	window.open('http://www.sambujafarm.co.kr','»ïºÎÀÚ³ó¿ø',''); break;			//»ïºÎÀÚ³ó¿ø
			case'2008_15':	window.open('http://www.sd2007.co.kr','»êµé¿¡³óÀå',''); break;					//»êµé¿¡³óÀå
			case'2008_16':	window.open('http://www.san153.co.kr','»ê°ú¿ø',''); break;						//»ê°ú¿ø
			case'2008_17':	window.open('http://www.sasafarm.co.kr','»ç»ç³ó¿ø',''); break;					//»ç»ç³ó¿ø
			case'2008_18':	window.open('http://www.seokangfarm.co.kr','¼­°­³ó¿ø',''); break;			//¼­°­³ó¿ø
			case'2008_19':	window.open('http://www.seonilfarm.co.kr','¼±ÀÏ³ó¿ø',''); break;				//¼±ÀÏ³ó¿ø
			case'2008_20':	window.open('http://www.yeongdongfarm.kr','¿µµ¿¹ö¼¸',''); break;				//¿µµ¿¹ö¼¸
			case'2008_21':	window.open('http://www.kimdh.co.kr','´ëÇö³óÀå',''); break;						//´ëÇö³óÀå
			case'2008_22':	window.open('http://www.dongsanwon.kr','µ¿»ê¿ø³ó¿ø',''); break;				//µ¿»ê¿ø³ó¿ø
			case'2008_23':	window.open('http://www.haessal.kr','ÇÞ»ì³ó¿ø',''); break;						//ÇÞ»ì³ó¿ø
			case'2008_24':	window.open('http://www.jinsolfarm.co.kr','Áø¼Ö³ó¿ø',''); break;					//Áø¼Ö³ó¿ø
			case'2008_25':	window.open('http://www.jinyeongfarm.co.kr','Áø¿µ³ó¿ø',''); break;			//Áø¿µ³ó¿ø
			case'2008_26':	window.open('http://www.mujikae.kr','¹«Áö°³³ó¿ø',''); break;						//¹«Áö°³³ó¿ø
			case'2008_27':	window.open('http://www.munseong.kr','¹®¼º³ó¿ø',''); break;					//¹®¼º³ó¿ø
			case'2008_28':	window.open('http://www.neulpureun.kr','´ÃÇª¸¥³ó¿ø',''); break;				//´ÃÇª¸¥³ó¿ø
			case'2008_29':	window.open('http://www.oncheonfarm.co.kr','¿ÂÃµº¹¼þ¾Æ³ó¿ø',''); break;	//¿ÂÃµº¹¼þ¾Æ³ó¿ø

		// 2008³âµµ ³ó°¡

		// ÇØ´çÀÌ ¾ø´Â °ª Ã³¸®
			default :  alert("°ªÀÌ Àß¸ø ‰ç½À´Ï´Ù. \n´Ù½Ã È®ÀÎÇØ ÁÖ¼¼¿ä.");
		}
	}


// Bk ³ó°¡ µ¿¿µ»ó ¸µÅ©

	function fnMovieLink(strFarmName)
	{
		self.location.href="mms://" + window.location.host + "/_CFmovie/"+ strFarmName +".wmv"
	}

//-->
