function addVideo(videoLink,videoImage,height){
	if (typeof(height)=="undefined"){
		height = "200";
	}
	
	var sVid = new SWFObject("http://www.cisco.com/cdc_content_elements/flash/video-player/mediaplayer.swf","videoplayer","240",height,"8"); // video aspec ratio: letter box 4:3 or wide screen 16x9
	sVid.addParam("allowfullscreen","true"); // option for user to turn full screen on or off
	sVid.addVariable("width","240"); // width of the video
	sVid.addVariable("height",height); // height of the video plus 20px for the video player bar
	sVid.addParam("wmode","opaque");
	sVid.addVariable("file",videoLink); // flv
	sVid.addVariable("image",videoImage); // initial image
	//sVid.addVariable("callback","true"); // tracking turn on with true
	sVid.addVariable("pagename","BizWiseTV Brodcast video"); // page name for tracking
	sVid.addVariable("videoname","BizWiseTV Brodcast video"); // video name for tracking
	sVid.addVariable("countrycode","US"); // country code
	sVid.write("flashvideo");
}