function swapImage(Img, defImgURL, ImgSwap)
{	
	var ImgSwapURL = document.images[ImgSwap].src 
	document.images[Img].src = ImgSwapURL;
}

function poptastic(url)
{
	newwindow = window.open(url,'newwindow','width=550,height=550,resizable=yes,menubar=no,toolbar=no,scrollbars=yes');
	newwindow.focus();
}

function poptasticgal(url)
{
	newwindow = window.open(url,'newwindow','width=360,height=490,resizable=yes,menubar=no,toolbar=no,scrollbars=no');
	newwindow.focus();
}