function writeJW(flashURL, divID, width, height, flashVars) {
	if (divID==null){
		divID = 'video';
	}
	
	if (height==null){
		height = '360';
	}
	
	if (width==null){
		width = '640';
	}
	
	var defaultOptions = {
		'flashplayer': '/assets/js/player.swf',
		'file': flashURL,
		'autostart': 'false',
		'volume' : 85,
		'stretching' : 'exactfit',
		'width': width,
		'height': height,
		'repeat' : 'list',
		'bufferlength': '5',
		'skin' : window.location.protocol + '//' + window.location.hostname + '/assets/swf/stylish.swf',
		'backcolor': '111111',
		'frontcolor': 'EEEEEE',
		'lightcolor': '666666',
    	'screencolor': '000000',
		'streamer': 'rtmp://cp77471.edgefcs.net/ondemand',
		'plugins': 'gapro-2'
	};
	
	for (i in flashVars){
		defaultOptions[i] = flashVars[i];
	}
	jwplayer(divID).setup(defaultOptions);
}



	
