
<!--
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,resizable,scrollbars,left=' + screenx + ',top=' +
screeny;
	var newWin = window.open(url,"window",features);
}

function doNothing(){} 
// End --> 


