
<!--
function switchImages( name1, source1 ){
		if ( document.images ){
			document[name1].src=source1;

        }
}

function switch2Images( name1, source1, name2, source2 ){
		if ( document.images ){
			document[name1].src=source1;
			document[name2].src=source2;
		}
	}
	
function switch3Images( name1, source1, name2, source2, name3, source3 ){
		if ( document.images ){
			document[name1].src=source1;
			document[name2].src=source2;
			document[name3].src=source3;
		}
	}	

function openPopCenter(url,height,width,features){

	// 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 featureList = 'height=' + height + ',width=' + width + ',left=' + screenx + ',top=' + screeny;
	if (features != '')
		featureList += ',' + features
		
	var newWin = window.open(url,"window",featureList);
}

function doNothing(){}

function ClearSearch() {
if(document.Search.Search.value == "Search")
	{
		document.Search.Search.value = "";
	}
} 
// End --> 



