function fullWin() {
	var x=(screen.width * .85);
	var y=(screen.height * .75);
	var xPos = Math.round((screen.width/2)-(x/2));
	var yPos = Math.round((screen.height/2)-(y/1.9));
	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);
}

/*---
function mapWindow() {
	var x=(screen.width * .80);
	var y=(screen.height * .65);
	var xPos = Math.round( (screen.width/2) - (x/2) );
	var yPos = Math.round( (screen.height/2.1) - (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);
}

function mapWindowObj(obj) {
	var x=(screen.width * .80);
	var y=(screen.height * .65);
	var xPos = Math.round( (screen.width/2) - (x/2) );
	var yPos = Math.round( (screen.height/2.1) - (y/2) );
	window.open(obj,'popup','location=no,menubar=no,toolbar=no,resizable=yes,scrollbars=yes,width=' + x + ',height=' + y + ',left=' + xPos + ',top=' +yPos + ',screenX=' + xPos + ',screenY=' + yPos, true);
}

function newWindow() {
	var x=400;
	var y=380;
	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);
}

function bigWindow() {
	var x=550;
	var y=400;
	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);
}

function bannerWindow() {
	var x=524;
	var y=492;
	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);
}
---*/
