var oLastElement = "";
function LoadIndexSubPage(obj){
    oContent = document.getElementById( obj.id + "Content");
    if(oLastElement){
        document.getElementById( oLastElement.id + "Content").style.display = "none";
        //oContent = document.getElementById( oLastElement.id + "ContentLoading").style.display = "none";
    }
    oLastElement = obj;
    var arActions = oContent.name.split("/");
    
    if( oContent.src.match(arActions[0]) ){
        //AJAX Here but dont work frame and frame loading
        oContent.src = oContent.src.replace(arActions[0], arActions[1]);
        oContent.style.display = "";
        
    }else{
        oContent.style.display = "";
    }
}