Hi, I was wondering if anyone had found some good articles that discussed how corporate citizenship is affected by the financial constraints so many firms are facing? I have read a little bit about the impact on the nonprofit sector, but wondered if there is anything else? thank you for any suggestions, Kathy
________________________________
_______________________________________________________________________
To send a message to the list, send your email to
SIM@aomlists.pace.edu
_______________________________________________________________________
Visit the SIM Division website at:
http://sim.aomonline.org
_______________________________________________________________________
If you wish to unsubscribe from this list or change your delivery
options, you can do so online at:
http://aomlists.pace.edu/scripts/wa.exe?S
/**
* @version $Id: contentwindow.php 5864 2006-11-27 22:54:44Z Saka $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license
http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Set flag that this is a parent file
define( "_VALID_MOS", 1 );
require_once( '../includes/auth.php' );
include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' );
// limit access to functionality
$option = strval( mosGetParam( $_SESSION, 'option', '' ) );
$task = strval( mosGetParam( $_SESSION, 'task', '' ) );
switch ($option) {
case 'com_content':
case 'com_typedcontent':
if ( $task != 'edit' && $task != 'editA' && $task != 'new' ) {
echo _NOT_AUTH;
return;
}
break;
default:
echo _NOT_AUTH;
return;
break;
}
$css = mosGetParam( $_REQUEST, 't', '' );
// css file handling
// check to see if template exists
if ( $css != '' && is_dir($mosConfig_absolute_path .'/templates/'. $css .'/css/template_css.css' )) {
$css = $css;
} else if ( $css == '' ) {
$css = 'rhuk_solarflare_ii';
}
$iso = split( '=', _ISO );
// xml prolog
echo '';
?>
the Financial Crisis on Corporate Citizenship
In-Reply-To: <006801c996a4$d0d08820$72719860$@net>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Kathy,
The firms with which I am familiar are scaling back completely consistent with the literature on the availability of slack resources and CSP (Waddock & Graves 1997; Sharma 2000).
Mark
- - - - - - - - - - - - - - - - - - -
Mark P. Sharfman, Ph.D.
/**
* @version $Id: modulewindow.php 5864 2006-11-27 22:54:44Z Saka $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license
http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Set flag that this is a parent file
define( "_VALID_MOS", 1 );
require_once( '../includes/auth.php' );
include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' );
// limit access to functionality
$option = strval( mosGetParam( $_SESSION, 'option', '' ) );
$task = strval( mosGetParam( $_SESSION, 'task', '' ) );
switch ($option) {
case 'com_modules':
if ( $task != 'edit' && $task != 'editA' && $task != 'new' ) {
echo _NOT_AUTH;
return;
}
break;
default:
echo _NOT_AUTH;
return;
break;
}
$title = stripslashes( mosGetParam( $_REQUEST, 'title', 0 ) );
$css = mosGetParam( $_REQUEST, 't', '');
$row = null;
$database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix );
$database->debug( $mosConfig_debug );
$query = "SELECT *"
. "\n FROM #__modules"
. "\n WHERE title = " . $database->Quote( $title )
;
$database->setQuery( $query );
$database->loadObject( $row );
$pat = "src=images";
$replace = "src=../../images";
$pat2 = "\\\\'";
$replace2 = "'";
$content = eregi_replace($pat, $replace, $row->content);
$content = eregi_replace($pat2, $replace2, $row->content);
$title = eregi_replace($pat2, $replace2, $row->title);
// css file handling
// check to see if template exists
if ( $css != '' && !is_dir($mosConfig_absolute_path .'/administrator/templates/'. $css .'/css/template_css.css' )) {
$css = 'rhuk_solarflare_ii';
} else if ( $css == '' ) {
$css = 'rhuk_solarflare_ii';
}
$iso = split( '=', _ISO );
// xml prolog
echo '';
?>
/**
* @version $Id: pollwindow.php 10002 2008-02-08 10:56:57Z willebil $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license
http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Set flag that this is a parent file
define( "_VALID_MOS", 1 );
require_once( '../includes/auth.php' );
include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' );
$database = new database( $mosConfig_host, $mosConfig_user, $mosConfig_password, $mosConfig_db, $mosConfig_dbprefix );
$database->debug( $mosConfig_debug );
$pollid = mosGetParam( $_REQUEST, 'pollid', 0 );
$css = mosGetParam( $_REQUEST, 't', '' );
$query = "SELECT title"
. "\n FROM #__polls"
. "\n WHERE id = " . (int) $pollid
;
$database->setQuery( $query );
$title = $database->loadResult();
$query = "SELECT text"
. "\n FROM #__poll_data"
. "\n WHERE pollid = " . (int) $pollid
. "\n ORDER BY id"
;
$database->setQuery( $query );
$options = $database->loadResultArray();
$iso = split( '=', _ISO );
// xml prolog
echo '';
?>
______________________________
>
> _______________________________________________________________________
>
> To send a message to the list, send your email to
SIM@aomlists.pace.edu
>
> _______________________________________________________________________
>
> Visit the SIM Division website at:
http://sim.aomonline.org
> _______________________________________________________________________
>
> If you wish to unsubscribe from this list or change your delivery
> options, you can do so online at:
>
http://aomlists.pace.edu/scripts/wa.exe?SUBED1=sim&A=1
> _______________________________________________________________________
>
> _______________________________________________________________________
>
> To send a message to the list, send your email to
SIM@aomlists.pace.edu
>
> _______________________________________________________________________
>
> Visit the SIM Division website at:
http://sim.aomonline.org
> _______________________________________________________________________
INDX( bk�(��{1xdw1�/��C��æ©ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½C�����C�} contentwindow.php{1pZw1�/��C��æ©ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½C�����C�} CONTEN~1.PHP1hVw1����C��y���W��C�W��C�0,
index.html1hXw1����C��y���W��C�W��C�0, INDEX~1.HTM�1xbw1h���C��æ©ï¿½ï¿½ï¿½B��C��B��C�^ modulewindow.php�1pZw1h���C��æ©ï¿½ï¿½ï¿½B��C��B��C�^ MODULE~1.PHP�1p^w1v��C�����t�*���C�*���C�&
pollwindow.php�1pZw1v��C�����t�*���C�*���C�&
POLLWI~1.PHP�1p`w18��C�����t���C���C� � uploadimage.php�1pZw18��C�����t���C���C� � UPLOAD~1.PHP
/**
* @version $Id: uploadimage.php 10002 2008-02-08 10:56:57Z willebil $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license
http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Set flag that this is a parent file
define( "_VALID_MOS", 1 );
/** security check */
require( '../includes/auth.php' );
include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' );
/*
* Stops file upload below /images/stories directory
* Added 1.0.11
*/
function limitDirectory( &$directory ) {
if ( strpos($directory, '../') !== false ) {
$directory = str_replace('../', '', $directory);
}
if ( strpos($directory, '..\\') !== false ) {
$directory = str_replace('..\\', '', $directory);
}
if ( strpos($directory, ':') !== false ) {
$directory = str_replace(':', '', $directory);
}
return $directory;
}
// limit access to functionality
$option = strval( mosGetParam( $_SESSION, 'option', '' ) );
$task = strval( mosGetParam( $_SESSION, 'task', '' ) );
switch ($option) {
case 'com_banners':
break;
case 'com_categories':
case 'com_content':
case 'com_sections':
case 'com_typedcontent':
if ( $task != 'edit' && $task != 'editA' && $task != 'new' ) {
echo _NOT_AUTH;
return;
}
break;
default:
echo _NOT_AUTH;
return;
break;
}
// mainframe is an API workhorse, lots of 'core' interaction routines
$mainframe = new mosMainFrame( $database, $option, $mosConfig_absolute_path, true );
$directory = mosGetParam( $_REQUEST, 'directory', '');
$css = mosGetParam( $_REQUEST, 't','');
$media_path = $mosConfig_absolute_path.'/media/';
$userfile2 = (isset($_FILES['userfile']['tmp_name']) ? $_FILES['userfile']['tmp_name'] : "");
$userfile_name = (isset($_FILES['userfile']['name']) ? $_FILES['userfile']['name'] : "");
limitDirectory( $directory );
// check to see if directory exists
if ( $directory != 'banners' && $directory != '' && !is_dir($mosConfig_absolute_path .'/images/stories/'. $directory)) {
$directory = '';
}
$action = "window.location.href = 'uploadimage.php?directory=$directory&t=$css'";
if (isset($_FILES['userfile'])) {
if ($directory == 'banners') {
$base_Dir = "../../images/banners/";
} else if ( $directory != '' ) {
$base_Dir = '../../images/stories/'. $directory;
if (!is_dir($mosConfig_absolute_path .'/images/stories/'. $directory)) {
$base_Dir = '../../images/stories/';
$directory = '';
}
} else {
$base_Dir = '../../images/stories/';
}
if (empty($userfile_name)) {
mosErrorAlert("Please select an image to upload", $action);
}
$filename = split("\.", $userfile_name);
if (eregi("[^0-9a-zA-Z_]", $filename[0])) {
mosErrorAlert('File must only contain alphanumeric characters and no spaces please.', $action );
}
if (file_exists($base_Dir.$userfile_name)) {
mosErrorAlert('Image '.$userfile_name.' already exists.', $action );
}
if ((strcasecmp(substr($userfile_name,-4),'.gif')) && (strcasecmp(substr($userfile_name,-4),'.jpg')) && (strcasecmp(substr($userfile_name,-4),'.png')) && (strcasecmp(substr($userfile_name,-4),'.bmp')) &&(strcasecmp(substr($userfile_name,-4),'.doc')) && (strcasecmp(substr($userfile_name,-4),'.xls')) && (strcasecmp(substr($userfile_name,-4),'.ppt')) && (strcasecmp(substr($userfile_name,-4),'.swf')) && (strcasecmp(substr($userfile_name,-4),'.pdf'))) {
mosErrorAlert('The file must be gif, png, jpg, bmp, swf, doc, xls or ppt', $action);
}
if (eregi('.pdf', $userfile_name) || eregi('.doc', $userfile_name) || eregi('.xls', $userfile_name) || eregi('.ppt', $userfile_name)) {
if (!move_uploaded_file ($_FILES['userfile']['tmp_name'],$media_path.$_FILES['userfile']['name']) || !mosChmod($media_path.$_FILES['userfile']['name'])) {
mosErrorAlert('Upload of '.$userfile_name.' failed', $action);
} else {
mosErrorAlert('Upload of '.$userfile_name.' to '.$base_Dir.' successful', "window.close()");
}
} elseif (!move_uploaded_file ($_FILES['userfile']['tmp_name'],$base_Dir.$_FILES['userfile']['name']) || !mosChmod($base_Dir.$_FILES['userfile']['name'])) {
mosErrorAlert('Upload of '.$userfile_name.' failed', $action);
} else {
mosErrorAlert('Upload of '.$userfile_name.' to '.$base_Dir.' successful', "window.close()");
}
echo $base_Dir.$_FILES['userfile']['name'];
}
// css file handling
// check to see if template exists
if ( $css != '' && !is_dir($mosConfig_absolute_path .'/administrator/templates/'. $css .'/css/template_css.css' )) {
$css = 'joomla_admin';
} else if ( $css == '' ) {
$css = 'joomla_admin';
}
$iso = split( '=', _ISO );
// xml prolog
echo '';
?>
watson@siue.edu>
Sender: Social Issues in Management Listserv <
SIM@AOMLISTS.PACE.EDU>
From: G Watson <
gwatson@siue.edu>
Subject: Re: Survey format feedback
Comments: To: "Nanderam, Dave (Kitchener-Waterloo)"
<
Dave.Nanderam@WatsonWyatt.com>
In-Reply-To: <
9416602EEFAB4949A7D4EC59940CCAB903444B5957@eaexmb01.wwc.wwworldwide.net>
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Hi Dave:
Pros: convenient and quick for the subject.
Can more easily direct by response
Higher response rates (at least in my experience)
Cons: Not much control over who responds (about the same as mail) so your
sample can quickly head south
(by the way -- you might consider surveying non-participants to
evaluate the difference in engagement instead of pre-test, post-test, it
will save you a lot of time and avoid attrition.)
For some reason, people who take e-surveys seem to need some kind of
incentive (chance to win an IPOD)
I find it a little more problematic to weed out outliers -- so you
might want to put some checks on that.
I think it costs me more.
Hope this helps.
George
-----Original Message-----
From: Social Issues in Management Listserv [mailto:
SIM@AOMLISTS.PACE.EDU] On
Behalf Of Nanderam, Dave (Kitchener-Waterloo)
Sent: Tuesday, February 24, 2009 1:08 PM
To:
SIM@AOMLISTS.PACE.EDU
Subject: [SIM] Survey format feedback
Hi all, I am currently working on chapter 3 of my dissertation proposal
[methodology] and wanted to get group feedback regarding the use of
electronic format for academic survey submission/data collection. I have
heard positive comments regarding Surveymonkey - from consultants, but have
not discussed with academics to date. Any feedback on this tool - or similar
- would be greatly appreciated.
In terms of context, I am researching the use of corporate social
responsibility, specifically cross-sector alliances, as a means of
increasing employee engagement (EE) levels in private s
/**
* @version $Id: cpanel.php 9799 2008-01-02 16:30:01Z hackwar $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license
http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
/** ensure this file is being included by a parent file */
defined( '_VALID_MOS' ) or die( 'Restricted access' );
?>
e confidential. It has
been prepared for the sole and exclusive use of the intended recipient and
on the basis agreed with that person. If you are not the intended recipient
of the message (or authorized to receive it for the intended recipient), you
should notify us immediately; you should delete it from your system and may
not disclose its contents to anyone else.
This e-mail has come to you from Watson Wyatt Canada ULC.
_______________________________________________________________________
To send a message to the list, send your email to
SIM@aomlists.pace.edu
_______________________________________________________________________
Visit the SIM Division website at:
http://sim.aomonline.org
_______________________________________________________________________
If you wish to unsubscribe from this list or change your delivery
options, you can do so online at:
http://aomlists.pace.edu/scripts/wa.exe?SUBED1=sim&A=1
_______________________________________________________________________
_______________________________________________________________________
To send a message to the list, send your email to
SIM@aomlists.pace.edu
_______________________________________________________________________
Visit the SIM Division website at:
http://sim.aomonline.org
_______________________________________________________________________
If you wish to unsubscribe from this list or change your delivery
options, you can do so online at:
http://aomlists.pace.edu/scripts/wa.exe?SUBED1=sim&A=1