﻿// JScript File

function blink(elId){
  var html = '';
  if(document.all){
    html += 'var bl = document.all.' + elId + ';';
  }
  else if(document.getElementById){
    html += 'var bl = document.getElementById("' + elId + '");';
  }
  html += 'bl.style.visibility = ' + 'bl.style.visibility == "hidden" ? "visible" : "hidden"';
  if(document.all || document.getElementById){
    setInterval(html, 750);
  }
}
function removeattribure(){

        var List=document.getElementsByTagName('img');
        for(var i=0;i<List.length;i++)
        {
            List[i].removeAttribute("border");
            List[i].removeAttribute("valign");
        }   
        
    }
function init(){
  blink('Header1_lblOffer');
  var pagename=window.location.pathname;
  
  if(pagename.substring(pagename.lastIndexOf('/') + 1)!="Signup.aspx")
  replaceChecks();
  removeattribure();
}
onload=init;