<!--

// OnError V.01 july, 5 1998
// keeps JavaScript error windows from launching [NN 3.0+ -- IE 4.0+ only]

function stopErrors() {
  return true;
}
window.onerror = stopErrors;
// End OnError V.01 july, 5 1998

//	ROLLOVER IMAGES
if (document.images) {

    //  "OFF" images.
    logoOff = new Image();
    	
    //  "OFF" sources.
    logoOff.src = "../../images/requests/411_logo_plain.gif";
    
    //  "ON" Images.
    logoOn = new Image();
    		   
    //  "ON" sources.
    logoOn.src = "../../images/requests/411_logo_home.gif";
}


function changeIn(imageName) {
  if (!document.images) return;
  document.images[imageName].src = eval(imageName + "On.src");
}

function changeOut(imageName) {
  if (!document.images) return;
  document.images[imageName].src = eval(imageName + "Off.src");
}

function affilChange(urlPath) { 
  if (urlPath) {
      affilwin = window.open (urlPath,'affilwin'); 
      self.close();
      win2.focus();
  }
}
function launch(urlPath) {
  if (urlPath) {
    remote = window.open (urlPath,'subwin', "width=370,height=480,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0"); 
    remote.focus();
  } else { 
    alert ("URL is not valid or empty! Notify Webmaster");
  }
}

function faqs(urlPath) {
  if (urlPath) {
    remote = window.open (urlPath,'subwin', "width=410,height=480,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0"); 
    remote.focus();
  } else { 
    alert ("URL is not valid or empty! Notify Webmaster");
  }
}

//  Change contents of parent window closing pop-up window
//  <A HREF="javascript:changeClose('become.html')">link on remote page</A>
function changeClose(urlPath) { 
  if (urlPath == "http://www.credit.com") {
      win2 = window.open (urlPath,'launchwin2'); 
      self.close();
      win2.focus();
    } else { 
      window.opener.location = urlPath; 
      self.close();
  }
}

//  Change contents of parent window leaving pop-up window alive
//  <A HREF="javascript:change('become.html')">link on remote page</A>
function change(urlPath) { 
  window.opener.location = urlPath; 
}

// PULLDOWN MENUS
function choose_topic(help) {
  var val01 = help.select_01.options[help.select_01.selectedIndex].value

if (val01 == "") { 
  alert("Please Check Selection!"); 
  } else {
    var myUrl = href = val01;
    //window.opener.location = myUrl;
    remoteHelp = window.open(myUrl, "sub", "width=370,height=480,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0");
    remoteHelp.focus();
    //help.reset();
  }
}

function SetJavaOk () 
{
  document.Request.javaok.value="on";
}
	
function popAlert( ) 
{
  var msg = "   Get $10.00 OFF Credit Monitoring Service if you add it to your order now!\n" + 
  "\n" + 
  "You were smart enough to order your 3-Agency credit report, now PROTECT IT!\n" +
  "Or, better yet let us do the work for you. For an additional $39.95 we will\n" +
  "send you quarterly alerts for one year whenever someone looks at, or adds\n" +
  "negative information to your credit report.\n" +
  "\n" +
  "    Also, membership supplies you with everything you need to obtain your:\n" +
  "                            FBI File - Driving Records - Medical Records\n" + 
  "                   Social Security Earnings & Benefit Estimate Statement\n" +
  "\n" +
  "                                 ACCEPT      -      DECLINE";
    if (document.Request.javaok.value=='')
    {
      if (confirm(msg)) 
      {
      document.Request.buymonitoringservice.value="on" //replace hidden form value;
      document.Request.specialoffer.value="on" //replace hidden form value;
      }
   }
}

//-->
