// jsTestimonials

function GetRandom(start,end) 
{ 
    var range = end - start + 1; 
    var result = start + Math.floor(Math.random()*range); 
    return result; 
}

testimonial_content = new Array();
client_info= new Array();
testimonial_content[1]="'I really believe in your products! They have greatly helped my skin, (and my love life).'";
client_info[1]="<br>- E. R. Haire, NC";
testimonial_content[2]="'It was about time that someone came up with a line of real products specifically for men.'";
client_info[2]="<br>- Jason V., MN";
testimonial_content[3]="'Your products are excellent. My face never looked better and no more razor burn.'";
client_info[3]="<br>- Anthony, NJ";
testimonial_content[4]="'I used to shower with bar soap until I tried your face and body wash. Wow...'";
client_info[4]="<br>- Chris, Miami";
testimonial_content[5]="'...Once again thanks for great products and great customer service, It really goes a long way with me.'";
client_info[5]="<br>- Craig, TX";
testimonial_content[6]="'My skin is very sensitive, and I can tell the difference between products that are really designed for sensitive skin.'";
client_info[6]="<br>- Dr. M. Devo M.D., MA";
testimonial_content[7]="'I took the TiO2 sunscreen with me to Hawaii in November and used it every day. This could very well be my favorite sunscreen...'";
client_info[7]="<br>- Daniel, NY";
testimonial_content[8]="'I think your shaving gel and Advanced Face Lotion are great...'";
client_info[8]="<br>- Aaron, FL";
testimonial_content[9]="'Have only begun using your products recently after many years of using another line but am now a total convert!'";
client_info[9]="<br>- Karl, UK";
testimonial_content[10]="'I am a longtime customer of your advanced shave formula. I have skin extremely prone to breakouts and in 15 years I have not found a better one.'";
client_info[10]="<br>- David, CA";
var index = GetRandom(1,10);
document.open();
document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td class="testimonials">');
document.write(testimonial_content[index]);
document.write('</td></tr><tr><td class="testimonials">');
document.write(client_info[index]);
document.write('</a></td></tr></table><br>');
document.close();