// JavaScript Document
$(document).ready(function(){var kword=$('#conKeyWord').text();if(kword){
		
		$('#conResult').removeHighlight().highlight(kword);														  
		var arr = new Array();
		var x;
		arr = kword.split(" ");
		for (x in arr)
		{
			$('#conResult').highlight(arr[x]);		
		}
		
																  
																  
																  };});

function checkSearch(){
	//$('#form1').attr('action','/search/index.jsp?newstext2='+encodeURIComponent($('#newstext2').val()));
	var stext=encodeURIComponent($('#newstext2').val());
 stext=stext.replace(/</g,"&lt").replace(/>/g,"&gt");
$('#form1').attr('action','/search/index.jsp?newstext2='+stext);
	return true;
	}
