/*********************************************************************************************************************
 *
 * main.js created for Cryptic Madness
 * (c) Gorghor 1997 - 2006
 * http://www.cryptdesigns.de
 *
 ********************************************************************************************************************/
 
 // Selected reviews mouseover effect
 function highlight (row1, row2) {
        row1.className = "RowOver"
        row2.className = "RowOver2"
        row1.style.cursor= 'pointer';
        row2.style.cursor= 'pointer';
 }
 
 function unhighlight (row1, row2) {
        row1.className = "Row_Sel_Review"
        row2.className = "RowOut"

 }


