// JavaScript Documentfunction videoSwitch(param) {		var _video = param;		var obj;		var title;		if(_video == 1) {				title = 'Introduction';				obj = '<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/atgtNVXTEsY&hl=en"><param name="wmode" value="transparent"><embed src="http://www.youtube.com/v/atgtNVXTEsY&hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object> ';						} else if(_video == 2) {				title = 'Do black holes "disappear" after they are formed? ';				obj = '<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/76-TOnCSRvg&hl=en"><param name="wmode" value="transparent"><embed src="http://www.youtube.com/v/76-TOnCSRvg&hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object> ';		} else if(_video == 3) {				title = 'Why the LHC experiments are not comparable to the collisions which occur in nature ';				obj = '<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/QhzTN6zdiOs&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/QhzTN6zdiOs&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object> ';		} else if(_video == 4) {				title = 'General information about the LHC';				obj = '<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/DxfP3sR_Cjc&hl=en"><param name="wmode" value="transparent"><embed src="http://www.youtube.com/v/DxfP3sR_Cjc&hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object> ';		} 		document.getElementById('vidtitle').innerHTML = title;		document.getElementById('videoholder').innerHTML = obj;}