<%@LANGUAGE="JAVASCRIPT"%> <% // *** Edit Operations: declare variables // set the form action variable var MM_editAction = Request.ServerVariables("SCRIPT_NAME"); if (Request.QueryString) { MM_editAction += "?" + Request.QueryString; } // boolean to abort record edit var MM_abortEdit = false; // query string to execute var MM_editQuery = ""; %> <% // *** Insert Record: set variables if (String(Request("MM_insert")) == "form1") { var MM_editConnection = MM_connGW_STRING; var MM_editTable = "[Conference Registration]"; var MM_editRedirectUrl = "conference.htm"; var MM_fieldsStr = "FirstName|value|LastName|value|Address|value|City|value|State|value|country|value|homephone|value"; var MM_columnsStr = "FirstName|',none,''|LastName|',none,''|Address|',none,''|City|',none,''|State|',none,''|Country|',none,''|HomePhone|',none,''"; // create the MM_fields and MM_columns arrays var MM_fields = MM_fieldsStr.split("|"); var MM_columns = MM_columnsStr.split("|"); // set the form values for (var i=0; i+1 < MM_fields.length; i+=2) { MM_fields[i+1] = String(Request.Form(MM_fields[i])); } // append the query string to the redirect URL if (MM_editRedirectUrl && Request.QueryString && Request.QueryString.Count > 0) { MM_editRedirectUrl += ((MM_editRedirectUrl.indexOf('?') == -1)?"?":"&") + Request.QueryString; } } %> <% // *** Insert Record: construct a sql insert statement and execute it if (String(Request("MM_insert")) != "undefined") { // create the sql insert statement var MM_tableValues = "", MM_dbValues = ""; for (var i=0; i+1 < MM_fields.length; i+=2) { var formVal = MM_fields[i+1]; var MM_typesArray = MM_columns[i+1].split(","); var delim = (MM_typesArray[0] != "none") ? MM_typesArray[0] : ""; var altVal = (MM_typesArray[1] != "none") ? MM_typesArray[1] : ""; var emptyVal = (MM_typesArray[2] != "none") ? MM_typesArray[2] : ""; if (formVal == "" || formVal == "undefined") { formVal = emptyVal; } else { if (altVal != "") { formVal = altVal; } else if (delim == "'") { // escape quotes formVal = "'" + formVal.replace(/'/g,"''") + "'"; } else { formVal = delim + formVal + delim; } } MM_tableValues += ((i != 0) ? "," : "") + MM_columns[i]; MM_dbValues += ((i != 0) ? "," : "") + formVal; } MM_editQuery = "insert into " + MM_editTable + " (" + MM_tableValues + ") values (" + MM_dbValues + ")"; if (!MM_abortEdit) { // execute the insert var MM_editCmd = Server.CreateObject('ADODB.Command'); MM_editCmd.ActiveConnection = MM_editConnection; MM_editCmd.CommandText = MM_editQuery; MM_editCmd.Execute(); MM_editCmd.ActiveConnection.Close(); if (MM_editRedirectUrl) { Response.Redirect(MM_editRedirectUrl); } } } %> <% var rsGW = Server.CreateObject("ADODB.Recordset"); rsGW.ActiveConnection = MM_connGW_STRING; rsGW.Source = "SELECT FirstName, LastName, Address, City, State, PostalCode, Country, HomePhone, EmailAddress FROM [Conference Registration]"; rsGW.CursorType = 0; rsGW.CursorLocation = 2; rsGW.LockType = 1; rsGW.Open(); var rsGW_numRows = 0; %> Groundworks [Conference]
 Groundworks: Environmental Collaboration in Contemporary Art
   
Shifting the Paradigm
 The Groundworks Monongahela Conference
  A public exchange of international views
  on art, ecology and planning.

An invitation to artists, designers, planners, community activists, professionals and students to attend an international conference on art and cultural change.

October 15 and 16, 2005
at the Regina Gouger Miller Gallery,
Carnegie Mellon University, Pittsburgh, PA

The conference will explore the following questions: Can artists create or manifest social change? Given the issues of scale, ecology and institutionalized planning, what is the artist's role?

Artists from the US, Argentina, Austria, England, Germany, India, Japan and Senegal will make short presentations in four topic areas: trails, parks, water planning and land planning. Each group will end with responses by elected officials, experts and activists, followed by audience discussion.

The keynote speaker is Tom Finkelpearl, author of "Dialogues in Public Art " and director of the Queens Museum of Art. The closing summation will be given by Grant Kester, author of "Conversation Pieces: Community and Communication in Modern Art."

Artists and Presenters
Navjot Altaf, Christine Brill, Jackie Brookner, Tim Collins, Alma Du Solier, Stephanie Flom, Reiko Goto, Helen Mayer Harrison and Newton Harrison, Ichi Ikeda, Amadou Kane Sy, Jonathan Kline, Suzanne Lacy, Connie and Tom Merriman, A. Laurie Palmer, Martina Reuter, Ann Rosenthal, Rafael Santos, Christoph Schäfer, Susan Leibovitz Steinman and Diane Wittner

Admission to the conference is free but due to limited seating, and the intent to distribute materials prior to the conference, registration with email and/or mailing address is required. Check-in begins at 8:30 am on Saturday, October 15. The keynote address by Tom Finkelpearl begins at 9:15 am. The approximate schedule for the each day's program is 9:15 am - 5:00 pm on Saturday and 9 am - 5:30 on Sunday.

This international conference coincides with the Groundworks: Environmental Collaboration in Contemporary Art exhibition at the Miller Gallery, which runs October 14 - December 11, 2005. The conference is sponsored by the STUDIO for Creative Inquiry and the Regina Gouger Miller Gallery with funds from Altria, Inc., The Pittsburgh Foundation, The Heinz Endowments and the Pennsylvania Council on the Arts.

The STUDIO for Creative Inquiry, an arts research center, exists to support creation and exploration in the arts, especially interdisciplinary projects that bring together the arts science, technology, and the humanities, and impact local and global communities.

The Regina Gouger Miller Gallery opened in January 2000 with the mission to support the creation, growth and understanding of contemporary art through exhibitions, projects, events and publications. The gallery aspires to engage diverse audiences, to create and strengthen communities through art, and to stimulate, provoke and encourage contemplation of the visual arts of our times. The Miller Gallery is free and open to the public. It is located in the Purnell Center for the Arts on the Carnegie Mellon campus. Gallery hours are Tuesday-Sunday, 11:30 a.m.-5 p.m. and by appointment. Visitor parking is available in the East Campus Parking Garage off Forbes Avenue and also in the Morewood Lot on weekends.

For more information
please contact
studio-info@andrew.cmu.edu
412-268-3454


Return to top



Information for Conference Registrants

Weekend campus dining options
(registrants are responsible for their own meals)

Return to top

 

 

 
 
<% rsGW.Close(); %>