function getObj(name)
{
	try {
		  if (document.getElementById)
		  {
			this.obj = document.getElementById(name);
			this.style = document.getElementById(name).style;
		  }
		  else if (document.all)
		  {
			this.obj = document.all[name];
			this.style = document.all[name].style;
		  }
		  else if (document.layers)
		  {
			this.obj = document.layers[name];
			this.style = document.layers[name];
		  }
	}
	catch (e) {
		alert("Error:" + e.description);
	}
}//end of getObj

var scrWidth = screen.width;
//alert(scrWidth);
if (scrWidth < 1024) {
	//alert("OK");
	try {
		var objFrame = new getObj("iframeContent");
	}
	catch (e) {
		//alert("Initialize");
	}
	
	try {
		objFrame.style.height = 280;
		}
	catch (e) {
		//alert("Frame height");
	}
	
	try {	
		document.img_lower_left_backdrop.src = "images/lower/lower_left_backdrop_h275.gif";
		}
	catch (e) {
		//alert("Image");
	}
	
	try {
		var objImg = new getObj("img_lower_left_backdrop");
		objImg.style.height = 275;
		//document.img_lower_left_backdrop.height = 275;
		}
	catch (e) {
		//alert("Image height");
	}
	
	//this only works for IE - find fix for Netscape
	
}
if (scrWidth < 800) {
	alert("This webpage will not display properly unless your screen resolution is set to a minimum of 800x600.");
}