function fullScreen() {
	if (window.GeckoActiveXObject) {
		var msg = "Unfortunately, Netscape/Mozilla doesn't support this function";
		alert(msg);
	} else {
		/* Check to be sure the player is playing. */
		if (parent.frames['videoContent'].wmpPlayer.playState == 3) {
			parent.frames['videoContent'].wmpPlayer.fullScreen = 'true';
		}
	}
}