	function showShareBox(video) {
		$('#shareholder').load("/sharepanel?item=" + video);
	}

	function hideShareBox() {
		$('#shareholder').html("");
	}

	function exploreSegment(part) {
		timecode = $('#videotime').val()
		$('#debug').html(timecode);
	}
	
	function loadSearchLink(query) {
		document.getElementById('searchlink').href='/search?q=' + query + '&KeepThis=true&TB_iframe=true&height=600&width=1000';
	}
	
	function show_video(video_url, start_time) {
		$('#playpause').html("<a href='javascript:pauseVideo();'><b>||</b> Pause</a>");
		loadNewVideo(video_url, start_time);
	}
	
	function pauseVideo() {
		pause();
		$('#playpause').html("<a href='javascript:playVideo();'><b>||</b> Play</a>");
	}

	function playVideo() {
		play();
		$('#playpause').html("<a href='javascript:pauseVideo();'><b>></b> Pause</a>");
	}
	
	function playFirstTime() {
		loadNewVideo(document.getElementById('loadvideoid').value, 0);
		$('#playpause').html("<a href='javascript:pauseExplore();'><b>||</b> Pause and Explore</a>");
	}
	
	function pauseExplore() {
		pause();
		$('#playpause').html("<a href='javascript:playHide();'><b>></b> Play</a>");
		partnumber = document.getElementById('partnumber').value;
		videotime = document.getElementById('videotime').value;
		$('#scriptblock').load("/segmentinformation/" + partnumber + "/" + videotime);
	}
	
	function playHide() {
		play();
		$('#playpause').html("<a href='javascript:pauseExplore();'><b>||</b> Pause and Explore</a>");
		$('#scriptblock').load("/segmentreset/" + partnumber)
	}
