/* File Info
   File Name:         sample.js
   Description:       The js file for sample.aspx page
   Created By:        v-yihuan
   Date:              09-Feb-2007
*/
function emThis()
{
	// please change specified email subject & body
	var sSubject = "Sample your own piece of Heaven";
	var sBody = "Sample your own piece of Heaven, please go to http://specials.uk.msn.com/heaven/sample.aspx";
	
	var et='mailto:?subject=' + sSubject + '&body=' + sBody;
	window.open(et);
	
	return false;
}
function initialEmailAFriend()
{	 
	var oEmailThis = document.getElementById('emthis');
	oEmailThis.attachEvent("onclick", new Function("emThis()")); 	
}

initialEmailAFriend();