
function getJwVariables(fileUrl, imageUrl, backColor, frontColor, lightColor){
	var flashVariables = {};
	flashVariables.file = fileUrl;
	flashVariables.image = imageUrl;
	flashVariables.stretching = "exactfit";
	if(backColor == "" || frontColor == "" || lightColor == ""){
		flashVariables.backcolor = "#111111";
		flashVariables.frontcolor = "#FFFFFF";
		flashVariables.lightcolor = "#9EDBF8";
	}else{
		flashVariables.backcolor = backColor;
		flashVariables.frontcolor = frontColor;
		flashVariables.lightcolor = lightColor;
	}
	return flashVariables;
}
function getJwParameters(){
	var parameters = {};
	parameters.loop = "false";
	parameters.quality = "best";
	parameters.wmode = "transparent";
	parameters.allowfullscreen = "true";
	parameters.allowscriptaccess = "always";
	return parameters;
}
function getJwHeight(videoHeight){
	var fullHeight = videoHeight + 25;
	return fullHeight.toString();
}

