//  Force getElementByIdif(!document.getElementById) {	if(document.all) {		document.getElementById = function() {			if(typeof document.all[arguments[0]] != "undefined") {				return document.all[arguments[0]];			} else { return null; }		}	} else if(document.layers) {		document.getElementById = function() {			if(typeof document[arguments[0]] != "undefined") {				return document[arguments[0]];			} else { return null; }		}	}}//  Resize Shiftervar resizeTimer;function resizeStart() {	if (resizeTimer) clearTimeout(resizeTimer);	resizeWin();	//document.getElementById('body').style.visible = 'hidden';	//document.getElementById('body').style.display = 'visible';	if (winwidth < screen.availWidth || winheight < screen.availheight) {				resizeTimer = setTimeout("resizeStart()", 50);			} else {			resizeStop();	}}function resizeStop() {	if (resizeTimer) clearTimeout(resizeTimer);}  // Show + Hidefunction showBOX(n) {    document.getElementById('BOX' + n).style.display = 'block';}function hideBOX(n) {    document.getElementById('BOX' + n).style.display = 'none';}    function swapBOX(n) {	document.getElementById('BOX' + n).style.display = document.getElementById('BOX' + n).style.display=='none'?'block':'none';}//  Window ResizercentY = 0;centX = 0;var winheight = 200;var winwidth = 200;var winXpos = 0;var winYpos = 0;var x = 8;var y = 8;function smallWin(){	top.window.moveTo(centX,centY);	resizeStart()}function growheightWin() {	top.window.resizeBy(0,y);	winheight+=y;	y+=1;}function growwidthWin() {	top.window.resizeBy(x,0);	winwidth+=x;	x+=1;}function resizeWin() {	if (winwidth<screen.availWidth) {		growwidthWin();	} }//  Alternative to "voided" linksfunction Hello() {	// Empty function} 