#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 105, 59, 192, 114)
$Label1 = GUICtrlCreateLabel("http://ya.ru", 26, 16, 55, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Label1
ShellExecute($sPath &"\firefox.exe", GUICtrlRead($Label1))
EndSwitch
WEnd