﻿
 
 var k;
 var l;
 var newid;
 //change the id to new id
 var myel = document.getElementById("myref");
 var imgid= myel.name;
 if(imgid != '')
    {
        var elcount = document.getElementsByName(imgid).length;
        newid = "myref" + imgid + elcount.toString();
    }
  else
      {
        newid = "myref";
      }
 myel.id = newid;
 myel.name = newid;

//get the id passed
//// var imgid= document.getElementById("myref").name;

//get the image inner html from xml file
var imghtml="";
switch(imgid)
 {
    case "0":
        //No image
        //imghtml = "<p  style=\"color:#87a900;font-family:Arial, Verdana, Helvetica, sans-serif; font-size:11px; text-decoration:none; font-weight:bold;margin-top:0px;margin-bottom:0px\">Share!</p>";
		imghtml = "<p  style=\"margin:0px;margin-top:0px;margin-bottom:0px\">Share!</p>";
        break;
    case "1":
        //MLP Text
        imghtml = "<p  style=\"color:#87a900;font-family:Arial, Verdana, Helvetica, sans-serif; font-size:11px; text-decoration:none; font-weight:bold;margin-top:0px;margin-bottom:0px\">Share!</p>";
        break;
    case "2":
        //stadium astro English
        imghtml = "<img src=\"http://m.maxisconnect.com/sharethis/sharethis-web_24_2.jpg\" width=\"162\" height=\"24\" border=\"0\" />";
        break;
    case "3":
        //Murai
        imghtml = "<img src=\"http://m.maxisconnect.com/sharethis/ShareThis_Web_BM_Murai_2.jpg\" width=\"140\" height=\"50\" border=\"0\" />";
        break;
	case "4":
        //stadium astro Malay
        imghtml = "<img src=\"http://m.maxisconnect.com/sharethis/sharethis-web_24_Malay_2.jpg\" width=\"211\" height=\"24\" border=\"0\" />";
        break;
    default :
        //default
        imghtml = "<p  style=\"color:#87a900;font-family:Arial, Verdana, Helvetica, sans-serif; font-size:11px; text-decoration:none; font-weight:bold;margin-top:0px;margin-bottom:0px\">Share!</p>";
 }
     



//set the image inner html if imgid passed <> 'CT'(customer text)
if(imgid!="CT")
{
	document.getElementById(newid).innerHTML = imghtml;
}



//if( (navigator.userAgent).indexOf("Mozilla")== -1)
if(/Firefox,MSIE,Safari,Chrome/.test(navigator.userAgent))
{
    k= "http://m.maxisconnect.com/sharethis/sharethis.aspx?";
}
else
{
    k= "http://m.maxisconnect.com/sharethis/sharethisweb.aspx?";
}

//get the language
l="&l=";
if(document.getElementById(newid).lang=="ms")
    {
        l="&l=ms";
    }
else
    {
        l="&l=en";
    }

 var s = unescape(encodeURIComponent(k)) + "url=" + (location.href).replace("&","%26") + "&title=" + document.title + l;
 document.getElementById(newid).href = s;