function goTo(sValue)
	{
		document.form.elements['page'].value = sValue;
		document.form.submit();
	}
function mailTo(sAddress)
	{
		document.location.href = "mailto:"+sAddress
	}
function swapImage(oImage,sState)
	{
		aImage[oImage.name].swap(oImage,sState);
	}
function dynamicImage(sOverSrc)
	{
		this.preloadImage = new Image();
		this.preloadImage.src = sOverSrc;
		this.overSrc = this.preloadImage.src;
	}
dynamicImage.prototype.swap = function(oImage,sState)
	 {
		if(sState=='over')
			{	this.outSrc = oImage.src; 
				oImage.src = this.overSrc; }
		else
			{	oImage.src = this.outSrc; }
	}
