function openWindow(theURL, winName, w, h, features) {
	windowFeatures = "width=" + w + ",height=" + h + "," + features;
	newWindow = window.open(theURL, winName, windowFeatures);
	newWindow.resizeTo(w, h);
	if (window.focus) { newWindow.focus() }
}