images = new Array(3);
images[0] = './images/welcome1.jpg';
images[1] = './images/welcome2.jpg';
images[2] = './images/welcome3.jpg';

function getImage(rel) 
{	
	var img_one = (1 + Math.floor(Math.random() * 47));
	var img_two = (1 + Math.floor(Math.random() * 47));

	while (img_one == img_two) {
	  img_two = (1 + Math.floor(Math.random()+1 * 47));
	}
	if (rel == null) rel = "../";
	document.getElementById('img1').src= rel + "blc_photos/image" + img_one + ".jpg";
	document.getElementById('img2').src= rel + "blc_photos/image" + img_two + ".jpg";
}

function getWelcomeImage()
{
	index = Math.floor(Math.random() * images.length);
	document.getElementById('welcome_img').src = images[index];
}


function pay_pop(anch) 
{
	window.open(anch.href, "pay_online", "toolbar=0,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=410,height=460");
}

/*Copyright Wellesley 2004 Created: December 12, 2004 Last Modified: February 26, 2006*/
