// JavaScript Document


var newWin = null;
var newGWin = null;
function popGWindow(url) {
	var xPos, yPos;

	winFeatures='height=480,width=640,menubar=no,resizable=yes,scrollbars=yes,toolbar=no';
	xPos = 50; yPos = 50;
	
	newGWin=window.open(url, 'Glossary', winFeatures);
	newGWin.moveTo(xPos, yPos);
	newGWin.focus();
}
function popWindow(url,windowname) {
	var xPos, yPos;

	winFeatures='height=600,width=800,menubar=no,resizable=yes,scrollbars=yes,toolbar=no';
	xPos = 50; yPos = 50;
	
	newWin=window.open(url, windowname, winFeatures);
	newWin.moveTo(xPos, yPos);
	newWin.focus();
}
function popStoryWindow(url,windowname) {
	var xPos, yPos;

	winFeatures='height=502,width=600,menubar=no,resizable=yes,scrollbars=no,toolbar=no';
	xPos = 50; yPos = 50;
	
	newWin=window.open(url, windowname, winFeatures);
	newWin.moveTo(xPos, yPos);
	newWin.focus();
}
