/* Susan Bloch javascript */


/* anti-spam mailto */

function talk(who,what,how) {
	var x=who;
	var y='hrsbconsulting.com';
	if (what) { var z='?subject='+what; } else { var z=''; }
	var a=x+'@'+y+z;
	if (!(how)) { var how = a }
	document.write ('<a href="mailto:'+a+'" title="'+x+'@'+y+'">'+how+'</a>');
}



/* random testimonial */

function randNum (num) {
	var now = new Date();
	var rand = Math.round(num * Math.cos(now.getTime()));
	if (rand < 0) { rand = - rand; }
	if (rand != 0) { rand = rand - 1; }
	return rand;
}

function writeTestimonial(which) { 
	var htmlCode = '';
/*	var which = ((randNum(2)));	*/

	if (which=='home') {
		htmlCode += '<p class="quote noindent">&ldquo;';
		htmlCode += 'Susan Bloch is that rarity in the field of human resources &mdash; someone who truly \'gets it\' and is an invaluable help to managers.';
		htmlCode += '&rdquo;</p>';
		htmlCode += '<p class="quoted noindent">Liz Lufkin<br />Director, Front Page Content Programming<br />Yahoo</p>';
	} else if (which=='services') {
		htmlCode += '<p class="quote noindent">&ldquo;';
		htmlCode += 'Susan has been a tremendous asset during a time of transition for our company. As we have nearly doubled our staff, she has worked to keep the lines of communication open with both new and existing employees. Susan has also worked with us to update our compensation and benefits plans, and has helped us implement policies to ensure the continued well-being of our staff.';
		htmlCode += '&rdquo;</p>';
		htmlCode += '<p class="quoted noindent">Terry Newell<br />CEO<br />Weldon Owen Inc.</p>';
	} else if (which=='clients') {
		htmlCode += '<p class="quote noindent">&ldquo;';
		htmlCode += 'Susan embodies the characteristics of a successful HR professional including being an active listener and trusted advisor. Susan led our firm\'s HR group not only efficiently and fairly, but with kindness during very trying times.';
		htmlCode += '&rdquo;</p>';
		htmlCode += '<p class="quoted noindent">Eric Parrott<br />IT Manager<br />Tilia</p>';
	} else if (which=='about') {
		htmlCode += '<p class="quote noindent">&ldquo;';
		htmlCode += 'Susan is a seasoned human resource professional who has great composure and can operate effectively, including making sound business decisions in the midst of a crisis. She effectively works with all levels of an organization because she shows respect for everyone and can quickly gain trust and support.';
		htmlCode += '&rdquo;</p>';
		htmlCode += '<p class="quoted noindent">Carol Enright<br />Owner<br />Enright &amp; Associates</p>';
	}

	document.write (htmlCode);
}


