function website_openwindow(command, args, scrollbars) {
  	var width="400", height="200";
  	var left = (screen.width/2) - width/2 - 100;
  	var top = (screen.height/2) - height/2 - 100;
	if (scrollbars=="") {
	scrollbars='yes';
	}
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,scrollbars='+scrollbars+',resizable=no,copyhistory=no,width=400,height=200,left='+left+',top='+top+',screenX='+left+',screenY='+top;
	window.open(command,args,styleStr);
}
function avatars_openwindow(command, args, scrollbars) {
  	var width="600", height="400";
  	var left = (screen.width/2) - width/2 - 100;
  	var top = (screen.height/2) - height/2 - 100;
	if (scrollbars=="") {
	scrollbars='yes';
	}
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,scrollbars='+scrollbars+',resizable=no,copyhistory=no,width=600,height=400,left='+left+',top='+top+',screenX='+left+',screenY='+top;
	window.open(command,args,styleStr);
}