Open a website when clicking on a Cube

Hello,

My name is Nik Strean and I live in Belgium.
I’m a grafical designer and now I’m having my first go at Unity.
But as expected I’m having problems with the scripting (Javascript), because this is new to me.
My problem:

I have created a simple world (for on a website): a plane to walk on, a ‘first person controler’ (to let you walk in the world) and a cube called ‘Cube001’.

When I click on ‘Cube001’ with the mouse I want the browser to open a website.
I think I have to make a New behavior script in Unity, and then a some code like
’ function OnMouseDown () {…} ’
But I have no clue how to do this.
Any help?

Why? Because I want a original way to list my favorite sites (links) instead of a normal list on a webpage.

function OnMouseDown () {
Application.OpenURL ("http://unity3d.com/");
}

There you go.[/code]

Thanks,
This is what i needed.

Nik