Jack Whitton wrote:
[color=blue]
> I want there to be 3 flags, English German and Spanish, and
> when a user clicks on there flag I want them to be redirected to
> en.html for english, de.html for german and es.html for spanish.[/color]
You need no JavaScript and you want no flags for that:
http://www.cs.tut.fi/~jkorpela/flags.html
BTW: I suggest index.XX.html or index.html.XX, so you can use
Content Negotiation if supported.
[color=blue]
> I also want a cookie to be dropped when they click on their flag so
> when they return it automaticly refers them to the right website.[/color]
Client-side JavaScript can provide that:
<a href="en.html"
onclick="document.cookie = ...; location = this.href; return false;"[color=blue]
>en</a>[/color]
See
http://devedge.netscape.com/library/...t.html#1193577
for details.
But since client-side Scripting it can be disabled, you should prefer a
server-side solution. Make PHP scripts out of the documents, e.g., and use
those scripts to set the cookie.
PointedEars