function init()
{
	preloadImages();
	//window.open ("http://www.google.com", "google");
}

/*function resizeContent()
{
	var main_content = document.getElementById("interior-body-text");
	if(main_content != null)
	{
		if(main_content.offsetHeight < 218) {
			main_content.style.height = 218+"px";
		} 
	}
}*/

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		about_on = newImage("images/nav_about_on.gif");
		homesites_on = newImage("images/nav_homesites_on.gif");
		build_on = newImage("images/nav_build_on.gif");
		region_on = newImage("images/nav_region_on.gif");
		pressroom_on = newImage("images/nav_pressroom_on.gif");
		visit_on = newImage("images/nav_visit_on.gif");
		preloadFlag = true;
	}
}

function popUp(URL) {
	day = new Date();
	id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=448,height=310,left = 192,top = 144');");
}

function visit(URL) {
	day = new Date();
	id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=426,height=460,left = 192,top = 144');");
}

function go() {
	box = document.forms[0].plot;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}

function hideMsg() {
	document.getElementById('statusmsg').style.display = 'none';
}