function swapImage(Img, defImgURL, ImgSwap)
{	
	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;	
	}
}


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();
}

function poptasticNewsletter(url)
{
	newwindow = window.open(url,'newwindow','width=560,height=420,resizable=yes,menubar=no,toolbar=no,scrollbars=yes');
	newwindow.focus();
}
