function watchVideo ( theVideo ) {

	theUrl = '/images/video.swf?video='+theVideo+'&amp;autoplay=true&amp;isvendor=true&amp;showplaying=false';
	theWidth = '320';
	theHeight = '260';

	var theHtml = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';
	theHtml += 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ';
	theHtml += 'width="'+theWidth+'" height="'+theHeight+'" id="video-object">';
	theHtml += '	<param name="allowScriptAccess" value="sameDomain" />';
	theHtml += '	<param name="movie" value="'+theUrl+'" />';
	theHtml += '	<param name="loop" value="false" />';
	theHtml += '	<param name="menu" value="false" />';
	theHtml += '	<param name="quality" value="autohigh" />';
	theHtml += '	<param name="scale" value="noscale" />';
	theHtml += '	<param name="salign" value="lt" />';
	theHtml += '	<param name="wmode" value="transparent" />';
	theHtml += '	<embed src="'+theUrl+'" loop="false" menu="false" quality="autohigh" ';
	theHtml += 'scale="noscale" salign="lt" wmode="transparent" width="'+theWidth+'" height="'+theHeight+'" ';
	theHtml += 'id="video-embed" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ';
	theHtml += 'pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	theHtml += '</object>';

	document.getElementById('video').innerHTML = theHtml;
	return false;

}

function showImage ( theImage ) {
	document.getElementById('fullimage').src = theImage;
}

function resetVideo ( theImage ) { }