﻿<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImagesPHP() {
	for (var i=0; i<changeImagesPHP.arguments.length; i+=2) {
		document[changeImagesPHP.arguments[i]].src = changeImagesPHP.arguments[i+1];
		}
	}

function makeEmailLink(address,domain) {
	document.write('<a href="mailto:' + address + '@' + domain + '">' + address + '@' + domain +'</a>');
	}

function openPopWindow(url,name,features) { 
	window.open(url,name,features);
	}
	

function resizeQuoteDIV(newH){
	//alert("new height is = "+newH+" and element to change is "+divid);
	//alert(document.getElementById(divid).style.height);
	document.getElementById("pullquote").style.height = newH +"px";		
}


// Internet Explorer ActiveX object activation
fls = document.getElementsByTagName("object");
for (var a = 0; a < fls.length; a++){
	fls[a].outerHTML = fls[a].outerHTML;
}


// -->
