function maxWindow() {
	var x=780;
	var y=(screen.height * .75);
	var xPos = Math.round((screen.width/2) - (x/2));
	var yPos = Math.round((screen.height/2) - (y/1.65));
	window.open('','popup','location=yes,menubar=no,toolbar=yes,resizable=yes,scrollbars=yes,width=' + x + ',height=' + y + ',left=' + xPos + ',top=' +yPos + ',screenX=' + xPos + ',screenY=' + yPos, true);
}
function maxWin(obj) {
	var x=780;
	var y=(screen.height * .75);
	var xPos = Math.round((screen.width/2) - (x/2));
	var yPos = Math.round((screen.height/2) - (y/1.65));
	window.open(obj,'new','location=yes,menubar=no,toolbar=yes,resizable=yes,scrollbars=yes,width=' + x + ',height=' + y + ',left=' + xPos + ',top=' +yPos + ',screenX=' + xPos + ',screenY=' + yPos, true);
}
function smallWindow() {
	var x=(screen.width * .35);
	var y=(screen.height * .3);
	var xPos = Math.round((screen.width/2)-(x/2));
	var yPos = Math.round((screen.height/2)-(y/2));
	window.open('','popup','location=no,menubar=no,toolbar=no,resizable=yes,scrollbars=yes,width=' + x + ',height=' + y + ',left=' + xPos + ',top=' +yPos + ',screenX=' + xPos + ',screenY=' + yPos, true);
}
