/**
 * Search
 *
 * Created by Sushanth C.S
 * Created on 09-January-2009
 * Modified by 
 * Modified on 
 * Modifications
 *
 * LICENSE: This source file is subject to license
 * that is available through the world-wide-web at the following URI:
 * http://www.amt.in/license.html.
 *
 * @category  Search
 * @package   SEGGER_Website
 * @author    Sushanth <sushanth@amt.in>
 * @copyright 2008-2009 by Advanced Millennium Technologies Pvt Ltd.
 * @license   http://www.amt.in/license.html License Version 3.0
 * @version   SVN: $Id:$
 * @link      http://www.segger.com/
 * @see       Core::projects
 * @since     Version 0.10
 */

function searchWord(e)
{	
	if(window.event) // IE
	  {
	  keynum = e.keyCode;
	  }
	else if(e.which) // Netscape/Firefox/Opera
	  {
	  keynum = e.which;
	  }

	var searchWord = document.getElementById('searchWord').value;

	if(keynum != 13 || searchWord == '') {
			return;
	}	
	var startAt = 1;
	window.location = "search.html?SearchData="+searchWord+"&p="+startAt;
}
/**
 ******************************************************************************
 *
 * (c) Segger CMS 2008-2009 by Advanced Millennium Technologies Pvt Ltd.
 * 
 ****************************************************************************** 
 */
