<!--
function MachakFull(Ie,other){
//Copyright © 1999 m.milicevic machakjoe@netscape.net jjooee@tip.nl
x=screen.availWidth;
y=screen.availHeight;
target = parseFloat(navigator.appVersion.substring(navigator.appVersion.indexOf('.')-1,navigator.appVersion.length));
// if((navigator.appVersion.indexOf("Mac")!=-1) &&(navigator.userAgent.indexOf("MSIE")!=-1) &&(parseInt(navigator.appVersion)==4))
// window.open(other,"sub",'scrollbars=no');
if (target >= 4){
 if (navigator.appName=="Netscape"){
    var MachakFull=window.open(other,"",'scrollbars=no','width='+x+',height='+y+',top=0,left=0');
 MachakFull.moveTo(0,0);
 MachakFull.resizeTo(x,y);}
if (navigator.appName=="Microsoft Internet Explorer")
 window.open(Ie,"","fullscreen=yes,scrollbars=no");
 }
 else window.open(other,"",'scrollbars=no');
 }
//-->

	function setWidth(){
		var win_w;
		var browser = navigator.appName;
		if (browser == "Microsoft Internet Explorer"){ //IE and Opera
			win_w = document.body.offsetWidth;
			if (win_w > 830){
				window.document.getElementById("fmovie").width = "100%";
			} else {
				window.document.getElementById("fmovie").width = "850";
			}
		} else {  //Netscape and Mozilla
			win_w = window.innerWidth;
			if (win_w > 830){
				 window.document.fmovie2.width = "100%";
			} else {
				window.document.fmovie2.width = "850";
			}
		}
	}
