How to disable Fullscreen for webplayer of unity3d

Hi,
Can anyone tell me on how to disable fullscreen for unity3d’s web player. Is there some build settings for that.
Thankyou.

Have a look at this : http://unity3d.com/support/documentation/Manual/WebPlayerBehaviorTags.html

This should do the trick:

var params = {
	disableFullscreen: true
};

unityObject.embedUnity("unityPlayer", "WebPlayer.unity3d", 600, 450, params);