﻿var ratingWindow;
//////////////////////////////////////////////////
//  Function Name:  openRatingsWindow(expertId)
//  Params:         expertId - The encrypted Id of the Expert you want to view
//  Description:    Opens a popup window
function openRatingsWindow(expertId)
{
    var popup_name = 'Experts Reviews';
    try
    {
        ratingWindow = window.open ("../expertprofile/chatreviews.aspx?eid="+ expertId, 'Chat','width=575,height=700');
       // return false;
    }
    catch(ex)
    {}
}