<!--
function switchImages( name1, source1 ){
	if ( document.images ){
		document[name1].src=source1;
	}
}

function openPopCenter(url,height,width){
	// Get left and top coordinates so window can be opened centered on the screen
	var screenx = ((screen.availWidth / 2) - (width / 2))
	var screeny = ((screen.availHeight / 2) - (height / 2))
	
	var features = 'height=' + height + ',width=' + width + ',toolbar=no,menubar=no,sizeable=no,scrollbars=yes,left=' + screenx + ',top=' + screeny;
	var newWin = window.open(url,'window',features);
}

function openPopCenterLEED(url,height,width){	
	// Get left and top coordinates so window can be opened centered on the screen
	var screenx = ((screen.availWidth / 2) - (width / 2))
	var screeny = ((screen.availHeight / 2) - (height / 2))
	
	var features = 'height=' + height + ',width=' + width + ',toolbar=no,menubar=no,sizeable=no,scrollbars=yes,left=' + screenx + ',top=' + screeny;
	var newWin = window.open(url,'LEED',features);
}

function doNothing(){} 
// End -->
