function chooseVideo (video) {
	var newVideo = video;
	var b = '<object classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" width="640" height="530" id="mediaPlayerObject">\n'
	+ ' <param name="autostart" value="1">'
	+ ' <param name="showcontrols" value="1">'
	+ ' <param name="showStatusBar" value="0">'
	+ ' <param name="wmode" value="transparent">'
	+ ' <param name="filename" value="'+newVideo+'">'
	+ ' <embed id="mediaPlayerEmbed" width="640" height="530"'
	+ '  autoStart=1 showControls=1 showStatusBar=0 wmode=transparent'
	+ '  type="application/x-mplayer2"'
	+ '  pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"';
	if (video.length > 1) {
		b += '  src="'+newVideo+'" fileName="'+newVideo+'"';
	}
	b += '></embed>';
	document.getElementById('videoContainer').innerHTML = b;
}

function hideVideo() {
	if (window.name == "popUpWin") {
		window.close();
	} else {
		if (obj = document.getElementById('videoContainer')) {
			obj.innerHTML = 'nbsp;';
			parent.parent.GB_hide();
		}
	}
}
