function popWindow(url)
{	
	var newPopWindow;
	newPopWindow=window.open(url,'MoreInformation','height=430,width=780');
	if (window.focus) {newPopWindow.focus()}
}

function swapImg(imgSrc) 
{
	document.images.imgMain.src = imgSrc;
}