

// function that displays status bar message



function javaWindow(name,width,height,filename){

		var winString = ""; //the string the holds the html for the new window.

		var windowString = 'toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no, width=';

		windowString += width;

		windowString += ',height=';

		windowString += height;

		windowString += ',innerwidth=';

		windowString += width;

		windowString += ',innerheight=';

		windowString += height;

		errorWindow = window.open(filename,name,windowString);

		var aNoteWin;

		self.aNoteWin = errorWindow;

	}

	







// popup windows (by bronwen)

// used on ourwork/aquaarts.html

function popup(url) {

mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=670,height=420');

}
