var element;

function getBodyElement () {
	element = document.getElementById ("bodyText");
}

/* ********************************** */
/* 	     determine screen res		  */
/* ********************************** */

var resWidth = screen.width;

if (resWidth.toString() == "800") {
	
	var width = 780;
	var height = 580;
	
} else if (resWidth.toString() == "1024") {
	
	var width = 900;
	var height = 700;

} else if (resWidth.toString() == "1152") {
	
	var width = 1000;
	var height = 820;

} else if (resWidth.toString() >= "1280") {
	
	var width = 1000;
	var height = 960;
	
}

function openWin (whatPage) {
	//var width = 1000;
	//var height = 760;

	var leftPos = (screen.width) ? (screen.width - width) / 2 : 0;

	settings = 'width=' + width + ',height=' + height + ',top=0,left=' + leftPos + ',scrollbars=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,status=yes';

	newWin = window.open(whatPage, 'win', settings);
}