function playVideo(player,video,still,vWidth,vHeight,obj) {
    
    var videoPlayer = player;
    var videoFile = video;
    var firstFrame = still;
    var vidWidth = vWidth;
    var vidHeight = vHeight;
    
    insertFlash("<OBJECT type='application/x-shockwave-flash' height='" + vidHeight + "' width='" + vidWidth + "' data='" + videoPlayer + "' id='flashVideoPlayer'><param NAME='Movie' VALUE='" + videoPlayer + "'><param NAME='Src' VALUE='" + videoPlayer + "'><param NAME='Quality' VALUE='High'><param name='wmode' value='transparent'><param name='flashvars' value='playVid=" + videoFile + "&vidWidth=" + vidWidth + "&vidHeight=" + vidHeight + "&img=" + firstFrame + "'></OBJECT>", obj);
    document.getElementById(obj);
    
}