function writeData(){
	if (medical){
		contentTD.style.backgroundImage = 'url(http://medschool.wustl.edu/images/posters/'+videoSrc+'/poster.jpg)';
		posterPath = "http://medschool.wustl.edu/images/posters/"+videoSrc+"/poster.jpg";
	}
	else{
		contentTD.style.backgroundImage = 'url(http://news-info.wustl.edu/posterImages/'+videoSrc+'/poster.jpg)';
		posterPath = "http://news-info.wustl.edu/posterImages/"+videoSrc+"/poster.jpg";
	}
	
	content.innerHTML = "<a href='http://videonews.wustl.edu/?play="+videoSrc+"'><img src='"+posterPath+"' border='0'></a>";
	
	document.writeln("<div style='padding: 4px 0px; text-align: center;'><a href='http://videonews.wustl.edu/?play="+videoSrc+"' style='color:#990000; text-decoration: none;' onmouseover='this.style.textDecoration = \"underline\";' onmouseout='this.style.textDecoration = \"none\";'>View this video in our new Flash player</a></div>");
	
}

var content = eval("document.getElementById('divMedia')");
var contentTD = eval("document.getElementById('divMediaTD')");

writeData();