// this javascript opens a new window
// note all the parameters that you can pass to the window


	var newwindow;
	function smallWindow(url)
{
	newwindow=window.open(url,'glosswindow','height=600,width=520,left=460,top=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no');
	if (window.focus) {newwindow.focus()}
}

	var window2;
	function smallerWindow(url)
{
	window2=window.open(url,'smallerwindow','height=200,width=520,left=460,top=100,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no');
	if (window.focus) {window2.focus()}
}

