// JavaScript Document

  function insertFile(formName, fieldName, argument)
  {
    var width = 860
 	  var height = 600
    if (argument != '') {
	     argument = '?action=' + argument;
	   }
    window.open("insert_file.php" + argument, "insertWindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + width + ",height=" + height);

    return true;
  }

  function manageFilesWindow() {
    var width = 860
 	  var height = 600
    window.open("manage_files.php", "manageFiles", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + width + ",height=" + height);

    return true;
			
		}
		
  function manageUserssWindow() {
    var width = 860
 	  var height = 600
    window.open("manage_users.php", "manageUsers", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + width + ",height=" + height);

    return true;
			
		}
		
  function emailUsersWindow() {
    var width = 860
 	  var height = 600
    window.open("email_users.php?action=new", "emailUsers", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=" + width + ",height=" + height);

    return true;
			
		}