function swapImage(Img, defImgURL, ImgSwap, sText)
{	
	var ImgSwapURL = document.images[ImgSwap].src 
	/*if (document.images[ImgSwap].src == defImgURL)
	{
		document.images[ImgSwap].src = document.images[Img].src;
		document.images[Img].src = defImgURL;
	}
	else
	{
		document.images[ImgSwap].src = document.images[Img].src;
		document.images[Img].src = ImgSwapURL;	
	}*/
		document.images[Img].src = ImgSwapURL;
		document.getElementById('bigImgText').innerHTML=sText;
}

function poptastic(url)
{
	newwindow = window.open(url,'newwindow','width=430,height=300,resizable=np,menubar=no,toolbar=no,scrollbars=no');
	newwindow.focus();
}