// JavaScript Document

var nifty_little_window = null;
function MM_openBrWindow() {
	var features, w = 800, h = 500;
	var top = (screen.height - h)/2, left = (screen.width - w)/2;
	if(top < 0) top = 0;
	if(left < 0) left = 0;
	features = 'top=' + top + ',left=' +left;
	features += ',height=' + h + ',width=' + w + ',resizable=no';
	nifty_little_window = window.open('richard.asp', 'theKeeper', features);
}

