var i=0

w = new Array();

w[i] = new R("Bic pens and pencils are...",1,"Not made in the USA.  Don't buy them.",""); ++i
w[i] = new R("Benetton...",0,"Owned by Italian company Edizione Holding, owns about 70% of Benetton",""); ++i
w[i] = new R("Car and Driver magazine is...",1,"Owned by French company Hachette Filipacchi Media",""); ++i
w[i] = new R("Cap Gemini is...",1,"A French company. Don't do business with them.",""); ++i
w[i] = new R("Chanel Products are...",1,"As French as the Eifel Tower.  Don't buy it!",""); ++i
w[i] = new R("Christian Dior products are...",1,"Parlais vous francais. Pass on it!",""); ++i
w[i] = new R("Clinique products are...",0,"Owned by US Company Estee Lauder",""); ++i
w[i] = new R("Club Med is..",1,"Why do you think there's so much French spoken there.","company"); ++i
w[i] = new R("Cover Girl products are...",0,"Owned by Proctor & Gamble",""); ++i
w[i] = new R("Dom Perignon is ...",1,"Oui, monsieur, it's from France.",""); ++i
w[i] = new R("Danimals yogurt is...",1,"Product of Groupe Danone from France. Pass on it.",""); ++i
w[i] = new R("Danon Yorgurt is...",1,"Owned by Groupe Danone from France. Don't Purchase it!","food"); ++i
w[i] = new R("Estee Lauder product's are...",0,"Owned by US company",""); ++i
w[i] = new R("Evian water is...",1,"Buy if you want to help the French.",""); ++i
w[i] = new R("French Fries are...",0,"You can eat all the freedom fries you'd like","food"); ++i
w[i] = new R("French Toast is ...",0,"Just call it Freedom Toast.",""); ++i
w[i] = new R("Gucci prodcut's are...",1,"French retailer Pinault-Printemps-Redoute (PPR) owns about 59% of Gucci",""); ++i
w[i] = new R("Guy LaFleur is...",0,"More Canadian than French.",""); ++i
w[i] = new R("Jacque Strap is...",0,"Actually a joke from The Simpsons TV show",""); ++i
w[i] = new R("The Guillotine is...",1,"Popularized by the French during the revolution. ",""); ++i
w[i] = new R("L'Oréal product's are...",1,"Made in Clichy, France",""); ++i
w[i] = new R("Levis are...",0,"Made in USA, probably China. Enjoy!",""); ++i
w[i] = new R("Maybelline products are...",1,"Owned by French company L'Oreal",""); ++i
w[i] = new R("Michelin is...",1,"Produce 840,000 tires/day from France. How about Goodyear?",""); ++i
w[i] = new R("Nissan cars are...",1,"44% owned by Renault a French company.",""); ++i
w[i] = new R("Parmalat Milk is...",0,"Made in Italy, drink away.",""); ++i
w[i] = new R("Pepe Le Pew is...",1,"It eez love, ma cherie!",""); ++i
w[i] = new R("Perrier water is...",1,"As good as tap, don't buy it.",""); ++i
w[i] = new R("Pierre Cardin is...",1,"Buy US Products.",""); ++i
w[i] = new R("Polland springs is...",0,"Enjoy a cold glass of water.",""); ++i
w[i] = new R("Revlon is..",0,"US mass market cosmetics company","company"); ++i
w[i] = new R("Revlon products are...",0,"Made in U.S.A.",""); ++i
w[i] = new R("RCA TVs are...",1,"French as the Arc de Triumph. Pass on it.",""); ++i
w[i] = new R("Rolling Stone magazine is...",1,"Owned by French company Vivendi Universal",""); ++i
w[i] = new R("Soft Sheen product's are...",1,"Owned by French company L'Oreal",""); ++i
w[i] = new R("Universal Studios...",1,"Say it ain't so, but owned by French co. Vivendi.",""); ++i
w[i] = new R("Yves Saint Laurent is...",1,"With a name like Yves, what else could he be.",""); ++i
w[i] = new R("Yoplait yogurt is...",1,"Buy US Products.",""); ++i


// last one below
w[i] = new R("The Cone Heads are... ",1,"Yes they're from France","Are the"); //last one no increment

function R(isFrench,answer,comment,type) {
 this.isFrench=isFrench
 this.answer=answer
 this.comment=comment
 this.type=type
}

function correct()
{ return 'Correct! ' }

function wrongo() {
return 'Wrong! ' }

function get_question()
{
var a;
var d;

a = Math.floor(Math.random()*w.length);  

document.writeln('<form name="Myform">');

d='<H4>'+w[a].isFrench+'</h4>';

document.writeln(d);
document.writeln('<INPUT TYPE="button" onClick="french_sel()" VALUE="French"  >');
document.writeln('<INPUT TYPE="button" onClick="notfrench()" VALUE="Not French"   >');
d = '<Input type="hidden" name="qnbr" value="'+a+'">'

document.writeln(d);

document.writeln('</form>');

}
