<!--
function switchImages( name1, source1 ){
	if ( document.images ){
		document[name1].src=source1;

	}
}

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( obj ){
	if(obj.value == "Search"){
		obj.value = "";
		}
}

function DoSearch(value) {
	location.href="/search/default.aspx?strSearch=" + value;
}
// End --> 


