﻿/*
File Name: 
Referred By: http://specials.uk.msn.com/nestleheaven/ article
Created By: Fareast\v-yihuan
Created Date: 13-Feb-20078
*/
var CONTENT_ID = "leftarea";
var MAIL_A_FRIEND_ID = "maillink";

function emailThis() {
    var sSubject = "Nestle Heaven Article";
    var eleContent = document.getElementById(CONTENT_ID); 
    var sBody;
    if(eleContent && eleContent.hasChildNodes) sSubject = eleContent.firstChild.innerText;
    if(ValidateURL(document.location.href))
    {
        sBody=document.location.href;          
        /*Added by v-sizhsu Begin */
	    sBody = sBody.substring(0,sBody.length);
	
    	cEndSharp = sBody.substring(sBody.length-1,sBody.length)
	    if( cEndSharp == '#'){
		    sBody = sBody.substring(0,sBody.length-1);
	        }
        /*Added by v-sizhsu End */
	
        window.open('mailto:?subject=' + escape(sSubject) + '&body=' + sBody,'_self');
    }
    return false;
}
function ValidateURL(form) {
    var v = new RegExp();
    v.compile("^([A-Za-z]+)(://[A-Za-z0-9-_\]+).([A-Za-z0-9-_%&\?\/#:.=\\s]+)$");
    if (!v.test(form)) 
    {
        return false;
    }
    return true;
} 
function loadSlider() {
    var oFlashSlide = document.getElementById('flashslide');
    var oSlide = document.getElementById('slide');
    if(oFlashSlide && oSlide) {
        oSlide.appendChild(oFlashSlide.firstChild);
    }
}
/*image "alt" change to "title" to compitable with FF*/
function altChangeToTitle(){
	var obj;
	if(obj = document.getElementById('maillink'))
		obj.childNodes[0].setAttribute("title","Email a Friend");
	if(obj = document.getElementById('feedbacklink'))
		obj.childNodes[0].setAttribute("title","Feedback");

	if(obj = document.getElementById('homelink'))
		obj.childNodes[0].setAttribute("title","Home");
	if(obj = document.getElementById('vipclublink'))
		obj.childNodes[0].setAttribute("title","Heaven VIP Club");
	if(obj = document.getElementById('beautylink'))
		obj.childNodes[0].setAttribute("title","Beauty");
	if(obj = document.getElementById('travellink'))
		obj.childNodes[0].setAttribute("title","Travel");
	if(obj = document.getElementById('foodlink'))
		obj.childNodes[0].setAttribute("title","Food");
	if(obj = document.getElementById('fashionlink'))
		obj.childNodes[0].setAttribute("title","Fashion");
	if(obj = document.getElementById('articlelogolink'))
		obj.childNodes[0].setAttribute("title","Nestle Heaven");
}
function initialize() {
    loadSlider();
	altChangeToTitle();
    var eleEmail = document.getElementById(MAIL_A_FRIEND_ID);
    if(eleEmail) eleEmail.attachEvent("onclick", new Function("emailThis()"));
}
initialize();