function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function pwgen(len) {
	chars = 'abcdefghkmnorstwxz23456789';
	charnum = chars.length;
	pw='';
	for (i=0; i<len; i++) {
		rand = (Math.random()* 1000) % charnum;
		pw = pw + chars.charAt(rand);
	}
	return pw;
	
}
