﻿var __cur_details_tab_id="img_product_tab";
var __cur_details_tab_off="./images/mv_tabs/product_off.gif";
var __current_details_content_divid='content_product';

function SelectDetailsTabulatorTab(selectedid,img_on,img_off,selected_content_div)
{

    if (__cur_details_tab_id!=null)
    {
		
        var current=document.getElementById(__cur_details_tab_id);
        if (current!=null) current.setAttribute("src",__cur_details_tab_off);
        
        if (__current_details_content_divid!=null)
        {
            var current_content=document.getElementById(__current_details_content_divid);
            if (current_content!=null) current_content.style.display="none";
        }
        
    }
    
    var selected=document.getElementById(selectedid);
    
    if (selected!=null) 
    {
        selected.setAttribute("src",img_on);
        __cur_details_tab_id=selectedid;
        __cur_details_tab_off=img_off;
    }
    
    var selected_content=document.getElementById(selected_content_div);
    
    if (selected_content!=null)
    {
        selected_content.style.display="block";
        __current_details_content_divid=selected_content_div;
    }
}

