
	function setSize(){
	
		var win_w, win_h, goal_w, goal_h;
		goal_w = 900;
		goal_h = 600;
		var browser = navigator.appName;
		if (browser == "Microsoft Internet Explorer"){ //IE and Opera
			win_w = document.body.offsetWidth;
			if (win_w > goal_w){
				window.document.getElementById("fmovie").width = "100%";
			} else {
				window.document.getElementById("fmovie").width = goal_w;
			}
			win_h = document.body.offsetHeight;
			if (win_h > goal_h){
				window.document.getElementById("fmovie").height = "100%";
			} else {
				window.document.getElementById("fmovie").height = goal_h;
			}
		} else {  //Netscape and Mozilla
			win_w = window.innerWidth;
			if (win_w > goal_w){
				 window.document.fmovie2.width = "100%";
			} else {
				window.document.fmovie2.width = goal_w;
			}
			
			win_h = window.innerHeight;
			if (win_h > goal_h){
				 window.document.fmovie2.height = "100%";
			} else {
				window.document.fmovie2.height = goal_h;
			}
		}
	}
	
	function getHeight(){
		var win_h ;
		
		win_h = screen.height;

		return win_h;
	}
