
	function contents_copy()
      {
          
 	     if (window.event)
	    {
		 window.event.returnValue = true;
 	  	 window.setTimeout('attach_kinref()', 25);
 	        
  	    }
	 
       } 
 

      
       function attach_kinref()      // Attaching Reference. ÃâÃ³ ºÙÀÌ±â
      {
           
		  if (window.clipboardData) // IE
		  { 	 
  		 
			var txt = window.clipboardData.getData('Text')    ;

			var Dns,Host;
			Dns=location.href;		
			Dns=Dns.split("//");
			Host=Dns[1].substr(0,Dns[1].indexOf("/"));
					
			if (Host !="deve.r114.co.kr") {
				txt = txt + '\r\n\n ÃâÃ³ : ' + document.Attachingcopy.msg.value + ' \r\n';	
			}
 			 
			var result  = window.clipboardData.setData('text', txt)  ;
 		
		  }
 		  
	 }
 
 