function showVideoLightbox(id,mySrc,myWidth,myHeight,statId,statType){
	var contentVideo = '<iframe src="'+mySrc+'" width="'+myWidth+'" height="'+myHeight+'" scrolling="no" class="videolisting"><a href="'+mySrc+'">Video<\/a><\/iframe>';
	if(BrowserDetect.browser.toLowerCase() == 'firefox' && parseInt(BrowserDetect.version) == 2){
		window.open(mySrc,mySrc,"menubar=no, status=no, scrollbars=no, menubar=no, width="+myWidth+", height="+myHeight);
	}else{
		var lightbox = new Lightbox({ name: id,content: contentVideo, type: 'video', width: myWidth, height: myHeight, position: 'center', identifier:'videobox' });
		lightbox.activate();
		new Ajax.Request('/5/index.cfm?event=videoStat.setStatistic&statId=' + statId + '&statType=' + statType , {
			method: 'get'
		});
	}
}
