To display information entered in the System > General area of the admin area use these:
Store Name
<?php echo Mage::getStoreConfig('general/store_information/name'); ?>
Store Address
<?php echo nl2br(Mage::getStoreConfig('general/store_information/address')); ?>
General Email Address
<?php echo Mage::getStoreConfig('trans_email/ident_general/email'); ?>
Custom Email Address 1
<?php echo Mage::getStoreConfig('trans_email/ident_custom1/email'); ?>
Store Phone Number
<?php echo Mage::getStoreConfig('general/store_information/phone'); ?>
There will be more, but this is all I need at the moment.