// ----------------------------------------------------------------------------
// Error Trapping Code
//window.onerror = function(){return true}


// ----------------------------------------------------------------------------
// Break Out Of Frames
if (top.location != self.location){top.location = self.location;}


// ----------------------------------------------------------------------------
// Highlight Main Menu Links
function hiLite(e, on){
  if (document.getElementById){
    if (on == 1){document.getElementById(e).style.backgroundColor = '#CAE3C1'}
      else {document.getElementById(e).style.backgroundColor = '#EEEEEE'};
  }
  return true;
}


// ----------------------------------------------------------------------------
// Send User To PayPal Web Site For Subscription Payment
function doSubscribe(x){
  switch(x){
    case "1":
      window.location = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=firstimpressionshome%40gmail%2ecom&item_name=1%20Year%20Subscription&amount=29%2e00&no_shipping=0&no_note=1&currency_code=USD';
      break;
    case "2":
      window.location = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=firstimpressionshome%40gmail%2ecom&item_name=2%20Year%20Subscription&amount=40%2e00&no_shipping=0&no_note=1&currency_code=USD';
      break;
    case "3":
      window.location = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=firstimpressionshome%40gmail%2ecom&item_name=3%20Year%20Subscription&amount=50%2e00&no_shipping=0&no_note=1&currency_code=USD';
      break;
  }
}


// ----------------------------------------------------------------------------
// Send User To PayPal Web Site For Subscription Renewal Payment
function doRenew(x){
  switch(x){
    case "1":
      window.location = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=firstimpressionshome%40gmail%2ecom&item_name=1%20Year%20Subscription%20Renewal&amount=29%2e00&no_shipping=0&no_note=1&currency_code=USD';
      break;
    case "2":
      window.location = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=firstimpressionshome%40gmail%2ecom&item_name=2%20Year%20Subscription%20Renewal&amount=40%2e00&no_shipping=0&no_note=1&currency_code=USD';
      break;
    case "3":
      window.location = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=firstimpressionshome%40gmail%2ecom&item_name=3%20Year%20Subscription%20Renewal&amount=50%2e00&no_shipping=0&no_note=1&currency_code=USD';
      break;
  }
}


// ----------------------------------------------------------------------------
// Send User To PayPal Web Site For User-Defined Payment Amount
function doMakePmt(x){
  if (x.length > 0){   
    window.location = 'https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=firstimpressionshome%40gmail%2ecom&item_name=Advertising%20Fees&amount=' + x + '%2e00&no_shipping=0&no_note=1&currency_code=USD';
  }
}


// ----------------------------------------------------------------------------
// Send User To URL From Drop-Down Box
function goToPage(x){
  window.location = 'http://www.firstimpressionscalifornia.com/' + x;
}

