function getList(){
var divList = document.getElementById("rightpanel").getElementsByTagName("div");
   for(x=0; x<divList.length; x++){
        divList[x].style.display="none";
    }
}

function showDetails(sku_id){
getList();
document.getElementById(sku_id).style.display="block";
}

//REMOVE ALL BELOW WHEN MORE THAN ONE PRODUCT IS ADDED

/*function fix(){
    document.getElementById("rightpanel").getElementsByTagName("div")[0].style.display="block";
}

window.onload = fix;*/
