// JavaScript Document	

		function show_popup($filename, $header, $width, $height, $scroll) {
			var target;
			target = "index.php?menu=" + $filename;
			parameters = "width=" + $width + ", height=" + $height + ", scrollbars=" + $scroll + ", resizable=no, toolbar=no, location=no";

			window.open(target, $header, parameters ); 
		}
		
		function show_popup_bugs($filename, $header, $width, $height, $scroll) {
			var target;
			target = "index.php?menu=" + $filename;
			parameters = "width=" + $width + ", height=" + $height + ", scrollbars=" + $scroll + ", resizable=yes, toolbar=yes, location=yes";

			window.open(target, $header, parameters ); 
		}
		
		function show_popup_resizeable($filename, $header, $width, $height, $scroll) {
			var target;
			target = "index.php?menu=" + $filename;
			parameters = "width=" + $width + ", height=" + $height + ", scrollbars=" + $scroll + ", resizable=yes, toolbar=no, location=no";

			window.open(target, $header, parameters ); 
		}
