<!-- Begin
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Elliot Khazon | http://sam.khazon.googlepages.com/lyrics2 */

// =======================================================
// Multiple onload function created by: Simon Willison
// http://simonwillison.net/2004/May/26/addLoadEvent/
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  showPage1();
});
// =======================================================

var baseUrl = "";

function showPage1 () {
	showPage (document.getElementById ("others.html"));
}

function showPage(el) {
 	var div = document.getElementById("textDiv");
 	page = baseUrl + el.id;
 	div.innerHTML = "<iframe src ='" + page +"' width='960px' height='590px' scrolling='auto'>";
}
// End -->

 
