########################################################
## Mod Title: MSNM Launcher for version RC4
## Mod Version: 1.0.1
## Author: Robert Mullaney <
robert@simp-tech.com >
## Updated by Robert Hellemans <
dutchmoviez@hotmail.com>
## Description: This will allow you to click the MSNM button image
## image to launch an MSN_IM window from usercp_viewprofile.php
## and viewtopic.php
##
## Installation Level: (easy)
## Installation Time: 2-5 Minutes
## Files To Edit: 3
## Included Files: (none)
########################################################
##
## Installation Notes:
##
## No DB changes are necessary for this MOD to work.
########################################################
#
#-----[ OPEN VIEWTOPIC.PHP AND FIND ]-------------
#
$msn_img = ( $postrow[$i]['user_msnm'] ) ? "<a href=\"" . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$poster_id") . "\"><img src=\"" . $images['icon_msnm'] . "\" alt=\"" . $lang['MSNM'] . "\" title=\"" . $lang['MSNM'] . "\" border=\"0\" /></a>" : "";
#
#-----[ REPLACE IT WITH ]------------------------------
#
$msgr_id = substr(microtime(), 3, 5);
$msn_img = ( $postrow[$i]['user_msnm'] ) ? "<object classid=\"clsid:FB7199AB-79BF-11d2-8D94-0000F875C541\" codetype=\"application/x-oleobject\" height=\"1\" id=\"MsgrCtl" . $msgr_id . "\" width=\"5\">
</object><a href=\"javascript:MsgrCtl". $msgr_id . ".LaunchIMUI('" . $postrow[$i]['user_msnm'] . "')\"><img src=\"" . $images['icon_msnm'] . "\" alt=\"" . $lang['MSNM'] . "\" title=\"" . $lang['MSNM'] . "\" border=\"0\" /></a>" : "";
#
#-----[ OPEN usercp_viewprofile.php AND FIND ]-----------------
#
$msnm_img = ( $profiledata['user_msnm'] ) ? '<img src="' . $images['icon_msnm'] . '" border="0" alt="' . $lang['MSNM'] . '" /> ' . $profiledata['user_msnm'] : " ";
#
#-----[ REPLACE IT WITH ]------------------------------
#
$msnm_img = ( $profiledata['user_msnm'] ) ? '<object classid="clsid:FB7199AB-79BF-11d2-8D94-0000F875C541" codetype="application/x-oleobject" height="1" id="MsgrCtl" width="5"></object><br/><a href="javascript:MsgrCtl.LaunchIMUI(\'' . $profiledata['user_msnm'] . '\')"><img src="' . $images['icon_msnm'] . '" border="0" alt="' . $lang['MSNM'] . '" /></a>' : " ";
#
#-----[ OPEN "templates/subSilver/profile_view_body.tpl" AND FIND ]-----------
#
<td class="row1" valign="middle"><span class="gen">{MSN}</span></td>
#
#-----[ REPLACE IT WITH ]------------------------------
#
<td class="row1" valign="middle"><span class="gen">{MSN_IMG}</span></td>
#
#-----------------------------------------------
#