<!-- Change image on Bag Color Swatches-->
function changeTab(tid){
   //tid is the ID of the tab that should be displayed
   contentDiv=document.getElementById('displayDiv');
   dTab=document.getElementById(tid);
   contentDiv.innerHTML=dTab.innerHTML;
}

function changeTab2(tid){
   //tid is the ID of the tab that should be displayed
   contentDiv=document.getElementById('displayDiv2');
   dTab=document.getElementById(tid);
   contentDiv.innerHTML=dTab.innerHTML;
}

function changeTab3(tid){
   //tid is the ID of the tab that should be displayed
   contentDiv=document.getElementById('displayDiv3');
   dTab=document.getElementById(tid);
   contentDiv.innerHTML=dTab.innerHTML;
}
