
<!-- Dummy comment to hide code from non-JavaScript browsers.

function NewerWindow(myform, windowname, w, h, scroll, size)
	{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',toolbar=0,scrollbars='+scroll+',dependent=YES,location=0,status=YES,menubar=0,resizable='+size+''
	if (! window.focus) return true;
	window.open('', windowname, winprops);
	myform.target=windowname;
	return true;
	}

// End of dummy comment -->
