//	default js//	all functions by mr.snow@laudanum.netfunction unhideEmail(email, inline) {	//	v0.3		//	array of things to find	find = new Array()	replace = new Array()		find[0] 	= "\\s*\\[\\s*dot\\s*\\]\\s*"	replace[0] 	= '.'	find[1] 	= "\\s*\\[\\s*at\\s*\\]\\s*"	replace[1] 	= '@'	for ( i = 0; i < find.length; i++ ) {		eval("regexp = /" + find[i] + "/ig")		email = email.replace(regexp, replace[i])	}		if(inline)		return email	else {		if ( email.indexOf('mailto') < 0 ) 			email = 'mailto:'  + email		location.href = email	}}