document.write('<div id="roll-video-info" style="display: none;"><h3 id="vn-roll-h3"></h3><p id="vn-roll-p" class="player_blurb"></p></div>');

var heart_info_h = new Array();
var heart_info_p = new Array();

heart_info_h[1] = 'Chapter 1: Thinking About Cancer  <span class="timecode">[8:46]</span>';
heart_info_p[1] = 'Linda Ellerbee introduces the panel of doctors who are cancer survivors.  They discuss their cancer experiences.';

heart_info_h[2] = 'Chapter 2: Courage  <span class="timecode">[8:25]</span>';
heart_info_p[2] = 'Cancer patients can feel brave and guilty.  How do you avoid the stigma of cancer?  What are the right words to say?';

heart_info_h[3] = 'Chapter 3: The Doctor-Patient Relationship  <span class="timecode">[6:26]</span>';
heart_info_p[3] = 'How should doctors give a cancer diagnosis?  How can patients be active participants in their treatments?';

heart_info_h[4] = 'Chapter 4: What Cancer Brings  <span class="timecode">[8:01]</span>';
heart_info_p[4] = 'The panel considers the role of spirituality in responding to cancer, as well as the reality of depression.';

function video_roll_show(vin)
{	
	document.getElementById('vn-roll-h3').innerHTML = heart_info_h[vin];
	document.getElementById('vn-roll-p').innerHTML = heart_info_p[vin];
	document.getElementById('default-video-info').style.display = "none";
	document.getElementById('default-video-info').style.display = "none";
	document.getElementById('roll-video-info').style.display = "block";
}

function video_roll_hide()
{
	document.getElementById('roll-video-info').style.display = "none";
	document.getElementById('default-video-info').style.display = "block";
}