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

// Specify the image files
var RightSideAdPic = new Array() // don't touch this
var RightSideAdAlt = new Array() // don't touch this
var RightSideAdUrl = new Array() // addition for url functionality
var RightSideAdOnClk = new Array() // addition for OnClick functionality

// Retrieve the current page url for ads which return to the same page they were click on.
var path3 = location.pathname.lastIndexOf('/')
var thispage3 = "http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+mvHk4H+" + location.pathname.substr(path3+1) + "+storewide10"
if (thispage3 == '')  {
    thispage3 = 'http://otcwholesale.com/index.html' 
	}
	
// For a SAME PAGE refresh follow this example
//RightSideAdPic[1] = 'http://site.diabeticdiscountdirect.com/ads/rightsideads/storewide10-195x250-2.gif'
//RightSideAdAlt[1] = 'Click here to save 10% Storewide today only!'
//RightSideAdUrl[1] = thispage3
//RightSideAdOnClk[1] = 'Save 10% Storewide Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

// To add more images and redirects continue the pattern, adding to the array below: 
RightSideAdPic[0] = 'http://site.diabeticdiscountdirect.com/ads/rightsideads/noxzema10-195x250.jpg'
RightSideAdAlt[0] = 'Click here to save 10% on all Noxzema products!'
RightSideAdUrl[0] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+EFnpCE+noxzema.html+noxzema10'
RightSideAdOnClk[0] = 'Save 10% on Noxzema Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

RightSideAdPic[1] = 'http://site.diabeticdiscountdirect.com/ads/rightsideads/joico10-195x250.jpg'
RightSideAdAlt[1] = 'Click here to save 10% on all Tiger Balm products!'
RightSideAdUrl[1] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+vbjkVQ+joico.html+joico10'
RightSideAdOnClk[1] = 'Save 10% on Joico Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

RightSideAdPic[2] = 'http://site.diabeticdiscountdirect.com/ads/rightsideads/nailtiques-195x250.jpg'
RightSideAdAlt[2] = 'Click here to save 10% on all Nailtiques products!'
RightSideAdUrl[2] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+nNyg95+nailtiques.html+nailtiques10'
RightSideAdOnClk[2] = 'Save 10% on Naltiques Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

RightSideAdPic[2] = 'http://site.diabeticdiscountdirect.com/ads/rightsideads/orthogel10-195x250.jpg'
RightSideAdAlt[2] = 'Click here to save 10% on all Orthogel products!'
RightSideAdUrl[2] = 'http://store.yahoo.com/cgi-bin/clink?yhst-4043893163530+WCxvXe+orthogel.html+orthogel10'
RightSideAdOnClk[2] = 'Save 10% on Orthogel Coupon Activated!\r\n\r Please click OK and wait for page to refresh.'

// =======================================
// Put Image in Place
// =======================================
var rand3 = Math.random();
var currentimg3 = Math.floor(RightSideAdPic.length * rand3);

function RightSideAdSelector()
{
document.images.RightSideAd.src = RightSideAdPic[currentimg3];
document.images.RightSideAd.alt = RightSideAdAlt[currentimg3];
}

function RightSideAdLink(){
window.location = RightSideAdUrl[currentimg3];
}

function RightSideAdClick(){
if (RightSideAdOnClk[currentimg3] != ''){
alert(RightSideAdOnClk[currentimg3]);
}
}