// =======================================
// Ad Selector
// =======================================

// Specify the image files
var FrontAdPic = new Array() // don't touch this
var FrontAdAlt = new Array() // don't touch this
var FrontAdUrl = new Array() // addition for url functionality
var FrontAdOnClk = new Array() // addition for OnClick functionality

// Retrieve the current page url for ads which return to the same page they were click on.
var path2 = location.pathname.lastIndexOf('/')
var thispage2 = location.pathname.substr(path2+1)
if (thispage2 == '')  {
    thispage2 = 'index.html' 
	}
var path4 = location.pathname.lastIndexOf('/')
var thispage4 = "http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+EN5XNb+" + location.pathname.substr(path4+1) + "+thanksgiving5"
if (thispage4 == '')  {
    thispage4 = "http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+EN5XNb+index.html+thanksgiving5" 
	}
// This is an example of landing on the same page after activating the coupon
//FrontAdPic[0] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/holiday-580x200.jpg'
//FrontAdAlt[0] = 'Click here save 10% storewide!'
//FrontAdUrl[0] = thispage4
//FrontAdOnClk[0] = 'Coupon Holiday10 is Activated.  Save 10% Storewide!\r\n\r Please click OK and wait for page to refresh.'

// To add more images continue the pattern, adding to the array below: 

FrontAdPic[0] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/prom760-580x200.jpg'
FrontAdAlt[0] = 'Click here to save 10% on the new ProMed 3760 Heated EMS Unit!'
FrontAdUrl[0] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+4MZNYU+promed-prom760.html+prom760'
FrontAdOnClk[0] = 'Save 10% on the new ProMed 760 Heated EMS Unit Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

//FrontAdPic[1] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/multi10-580x200.jpg'
//FrontAdAlt[1] = 'Click here to Save 10% on the New Multi-Roller Pain Relief System!'
//FrontAdUrl[1] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+NQdUYq+epprod-mtl100.html+multi10'
//FrontAdOnClk[1] = 'Save 10% on the New Multi-Roller Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

FrontAdPic[1] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/easytrak10-580x200.jpg'
FrontAdAlt[1] = 'Click here to Save 10% on the Easy Trak Blood Glucose Testing supplies!'
FrontAdUrl[1] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+Xmv4Ec+home-aide.html+easytrak10'
FrontAdOnClk[1] = 'Save 10% on the Easy Trak Blood Glucose Testing supplies Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

FrontAdPic[2] = 'http://site.diabeticdiscountdirect.com/ads/frontpageads/leadlok10-580x200.jpg'
FrontAdAlt[2] = 'Click here to save up to 60% on select electrodes!'
FrontAdUrl[2] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+ysBdh7+lead-lok.html+leadlok10'
FrontAdOnClk[2] = 'Save 10% on Silver Electrodes Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

// =======================================
// Put Image in Place
// =======================================
var rand2 = Math.random();
var currentimg2 = Math.floor(FrontAdPic.length * rand2);

//function FrontAdSelector(){
//document.images.FrontAd.src = FrontAdPic[currentimg2];
//document.images.FrontAd.alt = FrontAdAlt[currentimg2];
//}

function FrontAdLink(){
window.location = FrontAdUrl[currentimg2];
}

function FrontAdClick(){
if (FrontAdOnClk[currentimg2] != ''){
alert(FrontAdOnClk[currentimg2]);
}
}
