

function popup(url){
	var win_w, win_h;
	win_w = screen.availWidth; 
	win_h = screen.availHeight; 
	myWindow = window.open(url, "", "top=1, left=1, width=" + win_w + ", height=" + win_h + ", toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes");
	if (!myWindow.opener) myWindow.opener = self;			
	//window.close();
}


function setSize(){
	var win_w;
	var win_h;
	var browser = navigator.appName;
	if (browser == "Microsoft Internet Explorer"){ //IE and Opera
		win_w = document.body.offsetWidth;
		win_h = document.body.offsetHeight;
		if (win_w > 920){
			window.document.getElementById("fmovie").width = "100%";
		} else {
			window.document.getElementById("fmovie").width = "920";
		}

		if (win_h > 700){
			window.document.getElementById("fmovie").height = "100%";
		} else {
			window.document.getElementById("fmovie").height = "700";
		}
	} else {  //Netscape and Mozilla
		win_w = window.innerWidth;
		win_h = window.innerHeight;
		if (win_w > 920){
			 window.document.fmovie.width = "100%";
		} else {
			window.document.fmovie.width = "920";
		}

		if (win_h > 700){
			 window.document.fmovie.height = "100%";
		} else {
			window.document.fmovie.height = "700";
		}
	}
}