function setPointer(theRow, thePointerColor){
	if (typeof(theRow.style)=='undefined'||typeof(theRow.cells)=='undefined'){
	return false;}
	var row_cells_cnt = theRow.cells.length;
    for (var c = 0; c < row_cells_cnt; c++){
	theRow.cells[c].bgColor = thePointerColor;}
    return true;} 
// end of the 'setPointer()' function

function setPointer2(theCell, thePointerColor){
	if (typeof(theCell.style)=='undefined'||typeof(theCell.cells)=='undefined'){
	return false;}
	var row_cells_cnt = theCell.cells.length;
    for (var c = 0; c < row_cells_cnt; c++){
	theCell.cells[c].bgColor = thePointerColor;}
    return true;} 
// end of the 'setPointer()' function

function okno(url){
	window.open(url,"","'toolbar=0,location=0,menubar=1,scrollbars=1,width=620,height=400,resizable=1,top=20,left=20'");}
function show_photo(url){
	window.open(url,"show_photo","toolbar=no,scrollbars=yes,location=no,status=no,width=802,height=620,resizable=no");}