function f_get_movie_var(){
	document["video_player"].f_what_movie_from_javascript(what_movie_on_page, movie_group_on_page);
}

function f_get_theme_colors_var(){
	document["game"].f_what_theme_colors_from_javascript(bg_color, border_color, bg_1_color, bg_2_color, title_color, sub_title_color, text_color);
}

function f_change_css(class_name, class_value){
	if(document.styleSheets){
		var thecss = new Array();
		thecss = document.styleSheets[0].cssRules;
        var counter = 0;
		while(counter < thecss.length){
			if (thecss[counter].selectorText.toLowerCase() == class_name){
				thecss[counter].style.cssText = class_value;
			}
			counter++;
		}
	}
}
