<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

ideas = new makeArray(9);
ideas[0] = "Tip -- In most browsers you can just hit the return key instead of clicking on the search button.";
ideas[1] = "Tip -- Use + before each search term that must be found in all results.";
ideas[2] = "Tip -- Use - before each search term for words which must not be part of the search results.";
ideas[3] = "Tip -- Use \" \" around words and results will include instances where consecutive words are found.";
ideas[4] = "Tip -- Google does not stem.  Therefore if you search for <I>car</I>, Google will not search for <I>cars</I>.";
ideas[5] = "Tip -- Google removes words such as <I>and</I> and <I>or</I> so put plus signs in front of them if you want them included in your search.";
ideas[6] = "Tip -- Google supports the logical \"OR\" operator.  For example you can search <I>stock chart OR graph</I>.";
ideas[7] = "Tip -- Google searches are not case sensitive. All letters will be understood as lower case.";
ideas[8] = "Tip -- Type in <I>car site:www.ford.com</I> and Google will only search the Ford website for instances of <I>car</I>.";

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

//-->