HTML JavaScript DHTML

 
 
 
 
function updatePage() { 
    if (document.getElementById) { 
        document.getElementById("mainLink").href = "http://www.rntsoft.com"; 
        document.getElementById("welcome").innerHTML = "value for inner html"; 
    
    } 

window.onload = updatePage; 
 
 
 
Where?