making a web address clickable

Is there an easy way to make a webaddress in a label clickable or do you just need to make an invisible button over it?

Hi Raider,

The most succinct way, I think, would be to assign the style of a label to a button.

//button that looks like a label
if(GUILayout.Button("ButtonText", "label"))
	{
	//open hyperlink here	
	}

If you want something that looks and behaves like a traditional internet hyperlink, I recently did a little write up about it on my website, here:
http://www.cahman.com/content/unity3d-hyperlink-tutorial

Cheers!
Cahman