function openAuxWin(newStuff,wide,high,doScrll,doTool,doRsz){
	if(!wide){wide='400'}
	if(!high){high='500'}
	specs='width='+wide+',height='+high+',left=150,top=200,screenX=150,screenY=200';
	if((doScrll)&&(doScrll==1)){specs = specs + ',scrollbars'}
	if((doTool)&&(doTool==1)){specs = specs + ',toolbar'}
	if((doRsz)&&(doRsz==1)){specs = specs + ',resizable'}
//alert('specs = '+specs+'\n\nwide = '+wide+' high= '+high);

//need to see if the auxiliary window is already open

	var auxWindow = window.open('','auxWin',specs);

//the url argument is blank above and the location method is used below because url doesn't work on macs and unix systems
	auxWindow.resizeTo(wide,high);
	auxWindow.location=newStuff;
	auxWindow.focus();

}

function bringBackToTop(win)
{
	win.focus();
}
