/* 
  This file is copyrighted. You may not use any code nor information from file without written permission.
  Efoze.co.il site crew (2005) (c)
*/

function nbRow_onMouseOver(that) {
	that.tag = that.className;
	that.className = 'nbRow nbRowSelected';
	return true;
}

function nbRow_onMouseOut(that) {
	that.className = that.tag
	return true;
}

function nbRow_onClick(itemid) {
	chgLocation('search.php?itemID='+itemid, 'mainFrame');
	return true;
}