// func: clrSet    // used for RateThis on HotelReview, AttractionReview, and RestaurantReview    function clrSet(rating)    {        for(var i=1; i<=rating; i++) {            document.getElementById('ccl_' + i + '_w').style.display = 'none';            document.getElementById('ccl_' + i + '_y').style.display = 'inline';        }        for(var i=4; i>=1 && i>rating; i--) {            document.getElementById('ccl_' + i + '_w').style.display = 'inline';            document.getElementById('ccl_' + i + '_y').style.display = 'none';        }        for(var i=1; i<5; i++) {            document.getElementById('ccl_t' + i).style.display = 'none';        }        document.getElementById('ccl_t' + rating).style.display = 'inline';    }// func: clrOut    // used for RateThis on HotelReview, AttractionReview, and RestaurantReview    function clrOut(rating)    {        for(var i=1; i<5; i++) {        document.getElementById('ccl_' + i + '_w').style.display = 'inline';        document.getElementById('ccl_' + i + '_y').style.display = 'none';        }        document.getElementById('ccl_t' + rating).style.display = 'none';    }// func: wrtTRvw    // used for RateThis on HotelReview, AttractionReview, and RestaurantReview    function wrtTRvw(rating)    {        if (rating > 0 && rating < 5)        {            unobf(rateUrl[rating - 1]);        }    }// func: unobf    function unobf(sUrl)    {        // can have NOFOLLOW (absolute reference) otherwise it is a relative url        if (sUrl.substr(0,8) == "NOFOLLOW")        {           // window.parent.location.href = "http://" + sUrl.substr(8) + ".html";        }        else        {            //window.parent.location.href = "?intention=" + sUrl + "&resa=ok";			// document.getElementByid('maparticipation').innerHTML = '<input type="text" size="60" name="particip" value="' + sUrl + '" />';			// document.informations.submit();			tForm.participation.value=sUrl;        }    }