function textWindow(theURL,winName,width,height,variables) {
	var xPos = (screen.availWidth - 75) - width;
	var yPos = (screen.availHeight / 2) - (height / 2);	
	var other = ',width=' + width + ',height=' + height + ',left=' + xPos + ',top=' + yPos;
	window.open(theURL,winName,variables + other);
}

function newWindow(theURL,winName,width,height,variables) {
	var xPos = (screen.availWidth / 2) - (width / 2);
	var yPos = (screen.availHeight / 2) - (height / 2);	
	var other = ',width=' + width + ',height=' + height + ',left=' + xPos + ',top=' + yPos;
	window.open(theURL,winName,variables + other);
}