
// stdTools.js

function newWindow(url,width,height,scrollbars) {
	newWin=window.open(url,"","toolbar=no,location=no,directories=no,menubar=no,width="+width+",height="+height+",scrollbars="+((scrollbars)?"yes":"no"));
}
