/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var formId; // reference to the main form
var winId;	// reference to the popup window


// This function calls the popup window.
//
function showPlaceList(action, form, target) {
    formId=action.form.id;
    features="height=200,width=150,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes";
    winId=window.open('resultadoenquete.html?titulo= Resultado da Enquete ','list',features); // open an empty window

    //This is an emulation of the action link being clicked.
    hform[form+':'+target].value=form+':'+target;

    // Copy the current country variable value
    // to the corresponding field of the hidden form.
}
