function commercial(movie,title,desc)
{

var movhtml=""
var movinfo=""
movhtml += '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="235" width="320" >';
movhtml += '<param name="src" value="images/media/television/' + movie + '">';
movhtml += '<param name="autoplay" value="true">';
movhtml += '<param name="type" value="video/quicktime" height="235" width="320">';
movhtml += '<embed src="images/media/television/' + movie + '" height="235" width="320"   type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">';
movhtml += '</object>';
movinfo = '<h5 style="margin:0 !important;padding:0 !important;color:maroon;">' + title + '</h5>';
movinfo += '<p style="width:585px;margin:0 !important;">' + desc + '</p>';
document.getElementById("tv_spot").innerHTML = movhtml;
document.getElementById("mov_desc").innerHTML = movinfo;
}














