function windowOpener(url,name,height,width) {
//Give us fake numbers in case none are specified
	winHeight = "height=500";
	winWidth = "width=500";
	winPlacement = "";
	
	if (height) {
		winHeight = "height=" + height;
	}
	if (width) {
		winWidth = "width=" + width;
	}
	if (navigator.appName == "Netscape") {
		winPlacement = ",screenY=0,screenX=0";
		options = winHeight + "," + winWidth + winPlacement;
	} else {
		winPlacement = ",top=0,left=0";
		options = winHeight + "," + winWidth + winPlacement;
	}
	options = options + ",directories=no,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes'images"
	var outside = window.open(url, name, options);
//Outside may exist and what we'imagesve just done will refresh it but still leave it in the background. This moves it up.
	outside.focus();
}