﻿<!--

	var num="";
		num = Math.random();
		
		num = num * 100;
		num = Math.round(num);
		
		if(num<33)
		{
			num=0;
		}
		
		if(num>66)
		{
			num=1;
		}
		
		else if(num)
		{
			num=2;
		}


var bmAdImages= new Array("../images/bm_ad_1.jpg", "../images/bm_ad_2.jpg", "../images/bm_ad_3.jpg");
var bmUrls= new Array("https://plus20.safe-order.net/cgi-biblemagazine/store/commerce.cgi?product=books&keywords=1848", "https://plus20.safe-order.net/cgi-biblemagazine/store/commerce.cgi?product=other&keywords=back%20issues+binder", "https://plus20.safe-order.net/cgi-biblemagazine/store/commerce.cgi?product=videos");
function loader()
	{	
		
		window.defaultStatus='Bible Magazine - search for truth, Bible prophecy, Bible in the News';
		adRotate(1);
	}

	
function adRotate(where_from)
{	
	var current = bmAdImages[num];
	var the_url = bmUrls[num];
	
	
	if(where_from==1)
	{
		setTheAdBgrd(current)
	}
	
	else
	{
		var destination;
		destination = the_url;
		window.location.href=destination;
		
	}
	
}

function setTheAdBgrd(current_ad)
{
	var the_ad
	the_ad=document.getElementById('bm_ad').style.backgroundImage = "url('" + current_ad + "')";
}

//-->