function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function swapInputImage(input,img) {

input.src=img

}

function launchISAApp(paramsObj, webtrendObj) {

    var appURL = '/isa-online-app/applyNow.do-SSL?';
    var params = new Hash(paramsObj);

    var productFound = false;
    if(params.get('product')) {
       params.get('product').each(function(s){
           if(productFound) appURL += "&";
           appURL += "product=" + s;
           productFound = true;
       });
    }

    var fundFound = false;
    if(productFound) appURL += "&";
    if(params.get('fund')) {
        params.get('fund').each(function(s){
            if(fundFound) appURL += "&";
            appURL += "fund=" + s;
            fundFound = true;
        });
    }


 if (webtrendObj) {

   obj = webtrendObj;
   WTparams="";

      for (var prop in obj) {

         WTparams+= obj[prop][0] +"," + obj[prop][1] +","
      }

      WTparams = WTparams.substr(0,WTparams.length-1);
      dcsMultiTrackArray(WTparams);

}

    OpenNewSW(buildBannerLink(appURL),'isaapp','712','600');
}

function buildBannerLink(url) {

    var banner = getCookieValue('bannercode');
    var affiliate = getCookieValue('affiliate');
    var linkParts = url.split('?');
    var appLink = url;
    if(linkParts.length == 1 && (banner || affiliate)) appLink = linkParts[0] + "?";
    else if(banner || affiliate) appLink = linkParts[0] + "?" + linkParts[1] + "&";
    if(banner) appLink += banner;
    if(banner && affiliate) appLink += "&";
    if(affiliate) appLink += affiliate;
    return appLink;
}


//**********************************************//
//                //
//   FUNCTION: GET VALUE FROM NAME/VALUE PAIR   //
//                //
//**********************************************//

function getValueFromParameter(parameter) {

   newParameter = parameter.toLowerCase();
   newParameter = newParameter.split("=");
   return newParameter[1]


}


//******************************************//
//                                          //
//   FUNCTION: CHECK COOKIE VALUE EXISTS    //
//                                          //
//******************************************//

function returnCookieStatus(cookieStr) {

   var cookieString = document.cookie;
   cookieBannerPos = cookieString.indexOf(cookieStr);

      if (cookieBannerPos !=-1 ) {
         cookieBannerString = cookieString.slice(cookieBannerPos);
         cookieBannerArray = cookieBannerString.split(";");
         cookieBannerParam = cookieBannerArray[0];
         cookieBannerValue = getValueFromParameter(cookieBannerParam)
         return true;

      } else {

      return false

      }
}

//**********************************************//
//                                              //
//   FUNCTION: REWRITE CREDIT CARD FLASH        //
//                                              //
//**********************************************//


function reWriteFlash() {

var rewrite = returnCookieStatus('CCBanner=')


   if (rewrite != true)  {

   cookieBannerValue = "VMY-RS-54095-54186"

   }

   $('mymovie').asFunc(cookieBannerValue);

}

//**********************************************//
//                                              //
//   FUNCTION: REWRITE CREDIT CARD FORM ACTION  //
//                                              //
//**********************************************//

function reWriteActionVAA() {

    var rewrite = returnCookieStatus('code=');
    rewriteFormAction(rewrite);

}

function reWriteAction() {

    var rewrite = returnCookieStatus('source=');
    rewriteFormAction(rewrite);
}

function rewriteFormAction(rewrite) {

  if (rewrite == true) {

      formAction = $("colourForm").action.toString();
      var formActionArray = formAction.split('?'); //Everything after the ?
      var formActionUrl = formActionArray[0];
      var formActionParams = formActionArray[1]

      bannerCodePos = formActionParams.indexOf('mc=')

         if (bannerCodePos !=-1 ) {
            bannerCodeString = formActionParams.slice(bannerCodePos);
            bannerCodeArray = bannerCodeString.split("&");
            bannerCodeParam = bannerCodeArray[0];

         }

      newBannerCodeParam = "mc="+ cookieBannerValue +""
      newFormAction = formAction.replace(bannerCodeParam,newBannerCodeParam)
      $("colourForm").action = newFormAction

   }

}

//****************************************//
//                                        //
//   FUNCTION: REWRITE CREDIT CARD LINK   //
//                                        //
//****************************************//


function reWriteLink() {

var rewrite = returnCookieStatus('CCBanner=')

   if (rewrite == true) {

      linkAction = $("appLink").readAttribute('href');
      var linkActionArray = linkAction.split('?'); //Everything after the ?
      var linkActionUrl = linkActionArray[0];
      var linkActionParamsLessComma = linkActionArray[1].split("'");
      var linkActionParams = linkActionParamsLessComma[0]


      bannerCodePos = linkActionParams.indexOf('mc=')

         if (bannerCodePos !=-1 ) {
            bannerCodeString = linkActionParams.slice(bannerCodePos);
            bannerCodeArray = bannerCodeString.split("&");
            bannerCodeParam = bannerCodeArray[0];

         }

      newBannerCodeParam = "mc="+ cookieBannerValue +""
      newLinkAction = linkAction.replace(bannerCodeParam,newBannerCodeParam)
      $("appLink").setAttribute("href",newLinkAction)

   }

}


//*************************************************//
//                                                 //
//   FUNCTION: REWRITE CREDIT CARD ONCLICK & LINK  //
//                                                 //
//*************************************************//


function reWriteButtonCode(cookieName) {

var rewrite = returnCookieStatus(cookieName)

   if (rewrite == true) {

      // First rewrite the code behind the onclick event

      linkAction = $("appLink").readAttribute('onclick');
      var linkActionArray = linkAction.split('?'); //Everything after the ?
      var linkActionUrl = linkActionArray[0];
      var linkActionParamsLessComma = linkActionArray[1].split("'");
      var linkActionParams = linkActionParamsLessComma[0]



      bannerCodePos = linkActionParams.indexOf('mc=')

         if (bannerCodePos !=-1 ) {
            bannerCodeString = linkActionParams.slice(bannerCodePos);
            bannerCodeArray = bannerCodeString.split("&");
            bannerCodeParam = bannerCodeArray[0];

         }

      newBannerCodeParam = "mc="+ cookieBannerValue +"";
      newLinkAction = linkAction.replace(bannerCodeParam,newBannerCodeParam);
      $("appLink").setAttribute("onclick",newLinkAction);


      // Next, rewrite the html href behind the button too (copy of the code above).

      linkAction = $("appLink").readAttribute('href');
      var linkActionArray = linkAction.split('?'); //Everything after the ?
      var linkActionUrl = linkActionArray[0];
      var linkActionParamsLessComma = linkActionArray[1].split("'");
      var linkActionParams = linkActionParamsLessComma[0]


      bannerCodePos = linkActionParams.indexOf('mc=')

         if (bannerCodePos !=-1 ) {
            bannerCodeString = linkActionParams.slice(bannerCodePos);
            bannerCodeArray = bannerCodeString.split("&");
            bannerCodeParam = bannerCodeArray[0];

         }

      newBannerCodeParam = "mc="+ cookieBannerValue +""
      newLinkAction = linkAction.replace(bannerCodeParam,newBannerCodeParam)
      $("appLink").setAttribute("href",newLinkAction)

   }

}

//////////////////////////////////////////////////////////////////////////////////////////////////////////////

var NewWin;


function OpenNewSW(url,Name,w,h) {
closeWin ()
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',resizable=yes,toolbar=no,scrollbars=yes,menubar=yes,status=yes';
NewWin =  window.open(url,Name,winprops);
NewWin.focus();
}


function OpenNew(url,Name,w,h) {
closeWin ()
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,status=yes,resizeable=yes';
NewWin =  window.open(url,Name,winprops);
NewWin.focus();
}



function OpenNewSW(url,WinName,w,h) {

   closeWin()

   // Set defaults according to the old function's settings
   var defaultParamObj = {
      resizable:'yes',
      toolbar:'no',
      scrollbars:'yes',
      menubar:'yes',
      status:'yes'
      }
   var params = ","

   if(arguments[4]) { // Checks to see if the fifth parameter exists

      var obj    = arguments[4]

      for (var prop in obj) { //Loops through the values in the object

         defaultParamObj[prop] = obj[prop];  // replace defaults as necessary
      }
   }


   for (var defaultProp in defaultParamObj) {

      params+= defaultProp +"=" + defaultParamObj[defaultProp] +","; //rewrites the object in the correct string format
   }
   params = params.substring(0,params.length-1); //remove the comma at the end of the string

   var winl = (screen.width - w) / 2;
   var wint = (screen.height - h) / 2;
   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+params;

   //alert(winprops); //debugging

   NewWin = window.open(url,WinName,winprops);
   NewWin.focus();
}


function OpenNew(url,WinName,w,h) {

   closeWin()

   // Set defaults according to the old function's settings
   var defaultParamObj = {
      resizable:'yes',
      toolbar:'no',
      scrollbars:'yes',
      menubar:'no',
      status:'yes'
      }
   var params = ","

   if(arguments[4]) { // Checks to see if the fifth parameter exists

      var obj    = arguments[4]

      for (var prop in obj) { //Loops through the values in the object

         defaultParamObj[prop] = obj[prop];  // replace defaults as necessary
      }
   }

   for (var defaultProp in defaultParamObj) {

      params+= defaultProp +"=" + defaultParamObj[defaultProp] +","; //rewrites the object in the correct string format
   }
   params = params.substring(0,params.length-1); //remove the comma at the end of the string

   var winl = (screen.width - w) / 2;
   var wint = (screen.height - h) / 2;
   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+params;

   //alert(winprops); //debugging

   NewWin = window.open(url,WinName,winprops);
   NewWin.focus();
}




function OpenWithCookie(url,Name,w,h,cookieLabel) {

closeWin ()
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,status=yes,resizeable=yes';
var cookieValue = getCookieValue(cookieLabel);
var ref = window.location.href;
var text = "&referrer=";
fullUrl = url;
fullUrl += text += cookieValue += ref ;
NewWin = window.open(fullUrl,Name, winprops);
NewWin.focus();
}

function OpenPension(url,Name,w,h) {
closeWin ()
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,status=yes,resizeable=yes';
NewWin =  window.open(url,Name,winprops);
NewWin.focus();
}

function getCookieValue(cookieLabel){

var cookieString = document.cookie;
cookieStrPos = cookieString.indexOf(cookieLabel);
if (cookieStrPos !=-1 )
   {
   if (cookieString.indexOf(';') !=-1)
   {
   ourCookieString = cookieString.slice(cookieStrPos);
   cookieArray = ourCookieString.split(";");
   cookieValue = cookieArray[0];
   return cookieValue;
   }
   }
else
   {
   return "";
   }
}


function closeWin () {
  if (NewWin && (! NewWin.closed)) {
    NewWin.close ();
  } else {
    return false;
  }
}

function webtrendRedirect(url,newWindow,webtrendTags) {

   obj = webtrendTags
   params=""

      for (var prop in obj) {

         params+= obj[prop][0] +"," + obj[prop][1] +","
      }

      params = params.substr(0,params.length-1)
      dcsMultiTrackArray(params);

      if (newWindow == false) {

          window.location = url

      } else {


      w = newWindow.w
      h = newWindow.h

      OpenNewSW(url,"WT",w,h)

      }


}


/* functions for ISA pre-apply page */

function getSelectedRadio() {
   radioChoicePos = document.location.href.indexOf("?",1);
   if (radioChoicePos > 0) {
      selectedISA = document.location.href.substring(radioChoicePos + 1, document.location.href.length);
      highlightRadioChoice(selectedISA);
   }
}

function highlightRadioChoice(radioOption) {

   var formInputs = new Array();
   formInputs = $('the_form').getInputs('radio');
   for (i=0; i<formInputs.length; i++) {
      if (formInputs[i].type == 'radio') {
         radioOptionLabel = formInputs[i].value+"Label";
         if (formInputs[i].value == $(radioOption).id) {
            $(radioOption).checked = 'checked';
            $(radioOptionLabel).removeClassName('isa-option');
            $(radioOptionLabel).addClassName('isa-option-bold');
            $('error-text').style.display = 'none';
         }else{
            $(radioOptionLabel).removeClassName('isa-option-bold');
            $(radioOptionLabel).addClassName('isa-option');
         }
      }
   }
}



function gup( name ){  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  var regexS = "[\\?&]"+name+"=([^&#]*)";  var regex = new RegExp( regexS );  var results = regex.exec( window.location.href );  if( results == null )    return "";  else    return results[1];}


// Flash ActiveX fix

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}

/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */


var flashVerParam = gup('flashVer'); //sets an optional value based on FlashVer URL param to test against.

if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}   if(flashVerParam) { this.setAttribute('version', new deconcept.PlayerVersion(flashVerParam.toString().split("."))); }else {if(_5) { this.setAttribute('version', new deconcept.PlayerVersion(_5.toString().split("."))); }}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;