//popup window

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


// changes row background color 
//-----------------------------
function setPointer(theRow, thePointerColor) { // changes row  background color

    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()' 
// usage
// <tr onmouseover="setPointer(this, '#E0DFE3')" onmouseout="setPointer(this, '#f5f5f5')"><td>content</td></tr>

//###################################################################################





// functions that control the td background color on mouse interaction

//--------------------------------------------------------------------

function mOvr(src,clrOver){

  if (!src.contains(event.fromElement)){

    src.style.cursor = 'hand';

    src.bgColor = clrOver;

  }

}



function mOut(src,clrIn){

  if (!src.contains(event.toElement)){

    src.style.cursor = 'default';

    src.bgColor = clrIn;

  }

}



function mClk(src){

  if(event.srcElement.tagName=='TD')

    src.children.tags('A')[0].click();

}

//

//###################################################################################





// confirms action

//----------------

function confirm_action(question, destination){



    var check = confirm(question);



	if (check){

	self.location.href = destination;

	}

	else{

	alert ("Η ενέργεια ακυρώθηκε.");	

	}

	

    //}







}







//######################################################





//




