///////////////////////////////////////////
function popWin(x, wi, he, wi2, he2)
{
	w = screen.width;
	h = screen.height;
	sx = w/2-wi2;
	sy = h/2-he2;
	window.open(x,'','status=no,resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,menubar=no,width='+wi+',height='+he+',top='+sy+',left='+sx+',screenX='+sx+',screenY='+sy+'');
}
////////////////////////////////////////////
function trIn( tr ){
				  var i;
				  for( i=0; i<tr.cells.length; i++ )
					  tr.cells[i].style.backgroundColor = '#FFFEF1';
}
////////////////////////////////////////////
function trOut( tr ){
  var i;
  for( i=0; i<tr.cells.length; i++ )
			  tr.cells[i].style.backgroundColor = '';
}
////////////////////////////////////////////
function tdIn( oObject ){
	  oObject.style.backgroundColor = '#FFFEF1';
}
////////////////////////////////////////////
function tdOut( oObject ){
  	  oObject.style.backgroundColor = '';
}
