	var win= null;
	function NewsFlash()
	{
			var myname = "NewsFlash";
			var mypage = '/inc/news.php';
			var w = 600;
			var h = 400;
			
			// if(screen.width > w) { w = window.width; }
			// if(screen.height > h) { h = window.height; }
			
			var scroll = '1';
			
			var winl = 0; //(screen.width-w)/2;
			var wint = 0; // (screen.height-h)/2;
			settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=yes,location=no,status=no,menubar=no,resizable=yes,dependent=no'
			win=window.open(mypage,myname,settings)
			if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	}