function imgOver(imgNam,imgSrc)
{
	if (document.images)
	{
		document.images[imgNam].src = imgSrc;
	}
}

var newwindow;
function popup(url)
{
	newwindow=window.open(url,'name','height=500,width=300,resizable=true,scrollbars=true,toolbar=false,status=true');
	if (window.focus) {newwindow.focus()}
}

function addbookmark(url)
{
	window.external.AddFavorite(url,"Teach Me About Credit");
}