




<!-- Hide from older Browsers
//
// Random Quote "Quote of the moment script"
// By Mike Anderson aka "Gumby" - CP/GraphX 
// (c)copyright 2001, 2002 By Mike Anderson.
//
// Add this to the </head></head> section
// <script type=text/javascript src=scripts/cpg_randomquote.js></script>
//
// Call the script in your source as follows:
// <script>rnd_quote();</script>


// Enter the number of quotes
var num_quotes = 9;

// Function to pick a random number between 1 and the number of quotes defined.
function get_random()
{
    var ranNum= Math.floor(Math.random()*num_quotes)+1;
    return ranNum;
}

// Display the quote. Call this function from the location on your
// page where you want the quote to appear.
function rnd_quote()
{

var today = new Date();
var quotes = new Array(num_quotes);
var whichquote = get_random();
// document.writeln('<b>',today.toLocaleString(),'</b><br><br>');

// Add new quotes in the format below
quotes[1]="<i>&quot;First let me say it looks great. You did and are doing a good job ... My hat goes off to you man you're definitely skilled. Thank you for all your doing&quot;</i><br /> - [DvS]Death - ";
quotes[2]="<i>&quot;Both our sites were designed and are hosted by Templatepimps. We've been with them for over a year and a half. We highly recommend them.&quot;</i><br />=]ZT[=Misfit";
quotes[3]="<i>&quot;On my second year with TP, not using the original site I got from TP anymore but their affordable hosting is greatly appreciated by the World Force Clan.&quot;</i><br />Bronco";
quotes[4]="<i>&quot;I love Richbuff. Him and his posse hooked me up with my phat site for call of duty.&quot;</i><br />-hardNocks-";
quotes[5]="<i>&quot;Richbuff and the rest of the staff in TemplatePimps provided nothing but superb service.  You guys can bet that I am coming back to you for future services.....&quot;</i><br />[remIx]sydecutz";
quotes[6]="<i>&quot;Your service is awesome & I love the speed of your replies. I plan on getting 1 or more websites hosted by you guyz in the future . Keep up the good work.&quot;</i><br />-Skull42D-";
quotes[7]="<i>&quot;Ya i been bouncing around here for 3 years now. Just had cocker redo our old site for me. Would recommend TP to anyone.&quot;</i><br />-Drac-";
quotes[8]="<i>&quot;I purchased one of your premade templates and Im very happy with it. www.ggkthnx.com  This is my second site with you and couldn't be happier.&quot;</i><br />-Ej-";
quotes[9]="<i>&quot;I have to say that templatepimps.com provides excellent customer service. I receive replies to my many inquiries within hours, not days. Your staff are courteous and knowledgeable.&quot;</i><br />-Troy D.-";
// quotes[10]="No Quote";
// quotes[11]="No Quote";
// quotes[12]="No Quote";
// ... Etc

// document.write("<b>Quote #:</b> ",whichquote," of ",num_quotes,"<br><br>");
document.write(quotes[whichquote]);
}
// Stop Hiding -->









