function flash_zoom(d) {
	obj = document.getElementById("flash_game_object");
	embed = document.getElementById("flash_game_embed");
	if (d==0) {
		nw = obj.width*0.9;
		nh = obj.height*0.9;
	} else {
		nw = obj.width*1.1;
		nh = obj.height*1.1;
	}
	
	obj.width = nw;
	obj.height = nh;
	embed.width = nw;
	embed.height = nh;
}
