// JavaScript Document
		function window_fullscreen(){
			// doesn't work in Chrome - but hey
			window.moveTo(0,0);
			window.resizeTo(screen.width,screen.height);
		}

		function window_open(a,b,c){
			// for flash - so it doesn't return anything...

			window.open(a,b,c);
		}

		function poppage(mypage,w,h,s,pos){
			var scr = s;
			if(pos == 'topleft'){
				var winl = 20;
				var wint = 20;
			}else if(pos == 'uppermiddle'){
				var winl = (screen.width-w)/2;
				var wint = (screen.height-h)/2-210;
			}else{
				var winl = (screen.width-w)/2;
				var wint = (screen.height-h)/2;
			}
			settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no';
			x = 'loading'; // + Math.random();
			win=window.open(mypage,x,settings);
			win.focus();
		}

		function poppage2(mypage,w,h,s,pos){
			var scr = s;
			var winl = (screen.width-w)/2;
			var wint = (screen.height-h)/2-210;
			settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scr+',toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no';
			x = 'introvideo';
			win=window.open(mypage,x,settings);
			win.focus();
		}

