﻿function getCouponFromURL(url){
  return url.substring(url.lastIndexOf('/')+1,url.lastIndexOf('.'));
}

function getPrevious(url){
  if(eval(getCouponFromURL(url)).previous=='off'){
    document.write('<img src="http://cache.boston.com/marketing/momslovedeals/previous_off.gif" alt=""\/>');
  }
  else{
    document.write('<a href="'+eval(getCouponFromURL(url)).previous+'.html"><img onmouseover="this.src=\'http://cache.boston.com/marketing/momslovedeals/previous_on_h.gif\';" onmouseout="this.src=\'http://cache.boston.com/marketing/momslovedeals/previous_on.gif\';" src="http://cache.boston.com/marketing/momslovedeals/previous_on.gif" alt=""\/><\/a>');
  }
}

function getNext(url){
  if(eval(getCouponFromURL(url)).next=='off'){
    document.write('<img src="http://cache.boston.com/marketing/momslovedeals/next_off.gif" alt=""\/>');
  }
  else{
    document.write('<a href="'+eval(getCouponFromURL(url)).next+'.html"><img onmouseover="this.src=\'http://cache.boston.com/marketing/momslovedeals/next_on_h.gif\';" onmouseout="this.src=\'http://cache.boston.com/marketing/momslovedeals/next_on.gif\';" src="http://cache.boston.com/marketing/momslovedeals/next_on.gif" alt=""\/><\/a>');
  }
}

function getOnline(url){
  if(eval(getCouponFromURL(url)).online=='off'){
    document.write('<img src="http://cache.boston.com/marketing/momslovedeals/online_off.gif" alt=""\/>');
  }
  else{
    document.write('<a href="'+eval(getCouponFromURL(url)).online+'" target="_blank"><img onmouseover="this.src=\'http://cache.boston.com/marketing/momslovedeals/online_on_h.gif\';" onmouseout="this.src=\'http://cache.boston.com/marketing/momslovedeals/online_on.gif\';" src="http://cache.boston.com/marketing/momslovedeals/online_on.gif" alt=""\/><\/a>');
  }
}

function getPrint(url){
  if(eval(getCouponFromURL(url)).print=='off'){
    document.write('<img src="http://cache.boston.com/marketing/momslovedeals/print_off.gif" alt=""\/>');
  }
  else{
    document.write('<a href="javascript:window.print()"><img onmouseover="this.src=\'http://cache.boston.com/marketing/momslovedeals/print_on_h.gif\';" onmouseout="this.src=\'http://cache.boston.com/marketing/momslovedeals/print_on.gif\';" src="http://cache.boston.com/marketing/momslovedeals/print_on.gif" alt=""\/><\/a>');
  }
}

function getImage(url){
  coupon = getCouponFromURL(url);
  document.write('<img src="'+coupon+'.jpg" alt=""\/>');
}