// JavaScript Document
function swap(obj,img){
	obj.style.color = "#90A8D4";
	if(img){
		document.getElementById(img).src = 'images/bullet_lt.gif';
	}
}

function rswap(obj,img){
	obj.style.color = "#49639E";
	if(img){
		document.getElementById(img).src = 'images/bullet.gif';
	}
}

function popup(img){
	var imgpath = 'images/' + img + '.jpg';
	//alert(imgpath);
	window.open(imgpath, '', 'width=840,height=650,nochrome');
}