// JavaScript Document
function swapImg(imgName,imgSrc) 
{
	document.images[imgName].src = imgSrc;
}

function openPop(sUrl, sName, iWidth, iHeight, sFeatures) {
			sFeatures += ',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,width=' + iWidth + ',height=' + iHeight + ',top=' + (Math.round((screen.height - iHeight + 6)/2)) + ',left=' + (Math.round((screen.width - iWidth - 20)/2));
		    window.open(sUrl,sName,sFeatures);
}

function openPop2(sUrl, sName, iWidth, iHeight, sFeatures) {
			sFeatures += ',toolbar=no,location=yes,directories=no,status=no,menubar=no,resizable=yes,width=' + iWidth + ',height=' + iHeight + ',top=' + (Math.round((screen.height - iHeight + 6)/2)) + ',left=' + (Math.round((screen.width - iWidth - 20)/2));
		    window.open(sUrl,sName,sFeatures);
}
