function bigWin(obj) {
	var x=(screen.width * .85);
	var y=(screen.height * .8);
	var xPos = Math.round((screen.width/2)-(x/2));
	var yPos = Math.round((screen.height/2)-(y/1.8));
	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 noObj() {
	var x=(screen.width * .85);
	var y=(screen.height * .8);
	var xPos = Math.round((screen.width/2)-(x/2));
	var yPos = Math.round((screen.height/2)-(y/1.8));
	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);
}
