﻿function init() { 
    var sub_id = window.location.search.substring(1);
    if(sub_id != '') {
        var subObj = document.getElementById(sub_id);
        subObj.style.display="block";
        location.hash = sub_id; //+ '_head';
    }else{return false;}
}
