function swapImage(Img, defImgURL, ImgSwap)
{	
	var ImgSwapURL = document.images[ImgSwap].src 
	document.images[Img].src = ImgSwapURL;

//	IMAGE SWAP CODE
//
//	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,folder)
{
	var tempURL;
	var start = url.lastIndexOf('/')+1;
	var end = url.length;
	var guid = url.substring(start, end);
	
	tempURL = "WorkDetail.aspx?GUID=" + guid + "&folder=" + folder;
	
	newwindow = window.open(tempURL,'newwindow','width=391,height=500,resizable=yes,menubar=no,toolbar=no,scrollbars=yes');
	newwindow.focus();
}
function poptastic2(url)
{
	newwindow = window.open(url,'newwindow','width=391,height=500,resizable=yes,menubar=no,toolbar=no,scrollbars=yes');
	newwindow.focus();
}