			function init() {
				//if (document.getElementById("BrowserTest") != undefined) {
					var bt = document.getElementById("BrowserTest");
					//if (bt.innerText == "Loaded") {
						var mwidth = GetPageWidth();
						var mheight = GetPageHeight();
						SetWidth("Rail",mwidth - 116);
						SetWidth("mainpage",mwidth - 116);
						SetHeight("mainpage",mheight - 88);
						SetWidth("brd",mwidth - 150);
						SetHeight("brd",mheight - 100);
						SetWidth("Moto",mwidth - 224);
						SetLeft("CpyR",mwidth - 185);
						
						if (document.getElementById("GrowingInFaith") != undefined) {
							var grif = document.getElementById("GrowingInFaith");
							var cha = document.getElementById("ChAddress");
							var gtop = new String(grif.style.top);
							var griftop = Number(gtop.substring(0,gtop.length-2));
							cha.style.top = new String(griftop + 100 + "px");
						}				
						//var bt = document.getElementById("BrowserTest");
						//bt.innerHTML = "<FONT SIZE=1>" + navigator.userAgent + "&nbsp;&nbsp;" + whichBrs() + "&nbsp;&nbsp;:&nbsp;" + mwidth + "</FONT>";
						//bt.innerHTML = "<FONT SIZE=1>" + mwidth + " x " + mheight + "</FONT>";
					//}
				//}
			}

			function SetWidth(obj, oWidth) {
				if (document.getElementById(obj) != undefined) {
					var lObj = document.getElementById(obj);
					var acn = navigator.userAgent.toLowerCase();
					if (acn.lastIndexOf("312.6") != -1) {
						lObj.style.width = auto;
					} else {
						lObj.style.width = oWidth;
					}
				}
			}
			
			function SetHeight(obj,oHeight) {
				if (document.getElementById(obj) != undefined) {
					var lObj = document.getElementById(obj);
					var acn = navigator.userAgent.toLowerCase();
					if (acn.lastIndexOf("312.6") != -1) {
						lObj.style.height = auto;
					} else {
						lObj.style.height = oHeight;
					}
				}
			}
			
			function SetLeft(obj,oLeft) {
				if (document.getElementById(obj) != undefined) {
					var lObj = document.getElementById(obj);
					lObj.style.left = oLeft;
				}
			}
			
			function OldStuff() {
				var acn = navigator.userAgent.toLowerCase();
				if ((acn.lastIndexOf("312.6") != -1)) {
					railw.style.width = auto;
					mp.style.width = auto;
					mp.style.height = auto;
					obrd.style.width = auto;
					obrd.style.height = auto;
					oMoto.style.width = auto;
					
				} else {
					railw.style.width = mwidth - 116;
					mp.style.width = mwidth - 88;
					mp.style.height = mheight - 10;
					obrd.style.width = mwidth - 150;
					oMoto.style.width = mwidth - 224;
					obrd.style.height = mheight - 100;
				}
			}			
			
		
			function GetPageWidth() {
				var myWidth = 0;
				if( typeof( window.innerWidth ) == 'number' ) {
					//Non-IE  
					myWidth = window.innerWidth;  
				} else if( document.documentElement && ( document.documentElement.clientWidth ) ) {
					//IE 6+ in 'standards compliant mode'  
 					myWidth = document.documentElement.clientWidth;  
 				} else if( document.body && ( document.body.clientWidth ) ) {
					//IE 4 compatible  
					myWidth = document.body.clientWidth;  
  				}
				return myWidth;
			}

			function GetPageHeight() {
				var myHeight = 0;
				if( typeof( window.innerWidth ) == 'number' ) {
					//Non-IE  
					myHeight = window.innerHeight;  
				} else if( document.documentElement && ( document.documentElement.clientHeight ) ) {
					//IE 6+ in 'standards compliant mode'  
 					myHeight = document.documentElement.clientHeight;  
 				} else if( document.body && ( document.body.clientHeight ) ) {
					//IE 4 compatible  
					myHeight = document.body.clientHeight;  
  				}
				return myHeight;
			}
			
			function doResize() {
				SetWidth("Rail",mwidth - 116);
				SetWidth("mainpage",mwidth - 116);
				SetHeight("mainpage",mheight - 88);
				SetWidth("brd",mwidth - 150);
				SetHeight("brd",mheight - 100);
				SetWidth("Moto",mwidth - 224);
				SetLeft("CpyR",mwidth-185);
				if (document.getElementById("GrowingInFaith") != undefined) {
					var grif = document.getElementById("GrowingInFaith");
					var cha = document.getElementById("ChAddress");
					var gtop = new String(grif.style.top);
					var griftop = Number(gtop.substring(0,gtop.length-2));
					cha.style.top = new String(griftop + 100 + "px");
				}				
				//var bt = document.getElementById("BrowserTest");
				//bt.innerHTML = "<FONT SIZE=1>" + navigator.userAgent + "&nbsp;&nbsp;" + whichBrs() + "&nbsp;&nbsp;:&nbsp;" + mwidth + "</FONT>";
				//bt.innerHTML = "<FONT SIZE=1>" + mwidth + " x " + mheight + "</FONT>";
			}
