<!-- hide from old browsers
	var DHTML = (document.getElementById || document.all || document.layers); // var DHTML is true if any DOM is supported, false otherwise.
	function getObj(name) {
		if (document.getElementById) { // browser supports Level 1 DOM: IE 5+, Netscape 6+
			this.obj = document.getElementById(name);
			this.style = document.getElementById(name).style;
		} else if (document.all) {   // for IE 4+			
			this.obj = document.all[name];
			this.style = document.all[name].style;			
	  	} else if (document.layers) { // for Netscape 4+			
			this.obj = document.layers[name];
			this.style = document.layers[name];	 
		}	
	}
	
	function resize(width,height) {
		if (!DHTML) return;
		var a = new getObj('topWrap');
		var b = new getObj('toprightImage');				
		topWrapWidth = (width);
		toprightImageLeft = (width-170);		
		a.style.width = (topWrapWidth + "px");
		b.style.left = (toprightImageLeft + "px");
		}

	function alertSize() {
		var myWidth = 0, myHeight = 0;
		if( typeof( window.innerWidth ) == 'number' ) { //Non-IE		
			if (document.body.clientHeight < document.body.scrollHeight) {
				myWidth = window.innerWidth-15;
				myHeight = window.innerHeight;
			} else {
				myWidth = window.innerWidth;
				myHeight = window.innerHeight;
			}
	  	} else {
			if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { 
				myWidth = document.documentElement.clientWidth; //IE 6+ in 'standards compliant mode'
		 		myHeight = document.documentElement.clientHeight;
			} else {
				if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { //IE 4 compatible
					myWidth = document.body.clientWidth;
					myHeight = document.body.clientHeight;
		  		}
			}	
		}
		if (myWidth > 780) {
			resize(myWidth);
		} else if ((myWidth-20) < 780) {
			resize(775);
		}
	 }
-->