var objScroller;function verifyCompatibleBrowser(){  this.ver = navigator.appVersion;  this.dom = ((document.getElementById) ? 1 : 0);  this.ie5 = ((this.ver.indexOf("MSIE 5") > -1 && this.dom) ? 1 : 0);  this.ie4 = ((document.all && !this.dom) ? 1 : 0);  this.ns5 = ((this.dom && parseInt(this.ver) >= 5) ? 1 : 0);  this.ns4 = ((document.layers && !this.dom) ? 1 : 0);  this.bw = (this.ie5 || this.ie4 || this.ns4 || this.ns5);  return this;}bw = new verifyCompatibleBrowser();function ConstructObject(obj,nest){  nest= (!nest) ? '' : 'document.' + nest + '.';  this.elm = ((bw.dom) ? document.getElementById(obj) : (bw.ie4 ? document.all[obj] : (bw.ns4 ? eval(nest + 'document.' + obj) : 0)));  this.css = ((bw.dom) ? document.getElementById(obj).style : (bw.ie4 ? document.all[obj].style : (bw.ns4 ? eval(nest+'document.' + obj) : 0)));  this.scrollHeight = ((bw.ns4) ? this.css.document.height : this.elm.offsetHeight);  this.clipHeight = ((bw.ns4) ? this.css.clip.height : this.elm.offsetHeight);  this.obj = obj + "Object";  eval(this.obj + "=this");  return this;}function InitialiseScrollableArea() {  objScroller = new ConstructObject('contentcolumn');}// Functions for printingfunction PrintContent(){	var html = "";	if (document.getElementById != null) {		html = '<html>\n<head>\n';		if (document.getElementsByTagName != null) {			var headTags = document.getElementsByTagName("head");			if (headTags.length > 0)				html += headTags[0].innerHTML;		}		html += '\n</head>\n<body onLoad="JavaScript:print(); JavaScript:window.close();">\n';		html += objScroller.elm.innerHTML;		html += '\n</body>\n</html>';		var printWin = window.open("","PrintContent", "height=600, width=525, scrollbars");		printWin.document.open();		printWin.document.write(html);		printWin.document.close();		//printWin.print();		//printWin.close();	}}