function playVideo(inventoryID,style){
	
	var videoPlayer = window.open('/videoPlayer.cfm?inventoryid='+inventoryID+'&style='+style, 'videoPlayer', 'width=330,height=330,scrollbars=false');
	
	if (!videoPlayer){
		alert('Your video could not be loaded because of a pop-up blocker! Please enable popups for this web site!');
	}
}