function show_firm_card(firm_url, firm_tip_key, firm_name, this_handler, firm_card_offset, eID, highlight_mode ) 
{
	var theRow = document.getElementById(eID + '_row');
	if (theRow && this_handler.className != 'from_tip')
	{
		if ( highlight_mode != '' )
		{
			if (theRow.className=='selected_row_cat')
				theRow.className = 'not_selected_row_cat';
			else if (theRow.className=='not_selected_row_cat')
				theRow.className = 'selected_row_cat';
			
			if (theRow.className=='selected_row') 
				theRow.className = 'not_selected_row';
			else if (theRow.className=='not_selected_row') 
				theRow.className = 'selected_row';
		}
	}

	if ( highlight_mode != '' )
	{
		var theCheckbox = document.getElementById(eID);
		if (theCheckbox)
		theCheckbox.checked = !theCheckbox.checked;
	}
	var x_offset = 0;
	var y_offset = 0;

	x_offset = firm_card_offset * 35;
	y_offset = firm_card_offset * 35;
	
	card_width = (screen.width/1.9);
	card_height = (screen.height/1.6);
	card_left = (screen.width-(700)) - x_offset;
	card_top = 20 + y_offset;

	this_handler.href="javascript:void(0)";
	newWin = window.open(firm_url, firm_tip_key, "width="+card_width+",height="+card_height+",left="+card_left+",top="+card_top+",scrollbars=1,resizable=1,status=1,location=1,menubar=0,resizable=1,toolbar=0");
	newWin.focus();

	firm_card_offset++;	
	if (firm_card_offset > 10)		firm_card_offset = 0;
	return firm_card_offset;
}
