// JavaScript Document
function Expander() {
var id = "content";
var obj = document.getElementById(id);
obj.style.overflow = 'scroll';
obj.style.bgcolor = '#fff';
/*
obj.style.position = 'absolute';
obj.style.top = '10px';
obj.style.height = '400px';
alert("Go");
*/
}