// JavaScript Document

function dottv_vidPlayer(id,filepath,thumbid) { 
	
document.getElementById(id).innerHTML = "<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='640' height='380' id='dottv_player' align='middle'><param name='allowScriptAccess' value='sameDomain' /><param name='allowFullScreen' value='true' /><param name='movie' value='/widgets/doltv_player640px.swf?file=" + filepath + "' /><param name='quality' value='high' /><param name='bgcolor' value='#000000' /><embed src='/widgets/doltv_player640px.swf?file=" + filepath + "' quality='high' bgcolor='#000000' width='640' height='380' name='dottv_player' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' allowFullScreen='true' /></object>";





var x = 1;

while (x < 25) {
	if (x != thumbid) {
	document.getElementById("thumb" + x).style.background = "#ffffff";
	}
	
	if (x == thumbid) {
	document.getElementById("thumb" + thumbid).style.background = "#cccccc";	
	}
	
	x++;
}

}

