currentSearchForm = '99782';
newForm = '99782';
function changeForm(newForm){
if (document.getElementById)
	{
	myEl = document.getElementById('is_radio_' + currentSearchForm);
	myEl.checked = 'false';
	myEl = document.getElementById('is_link_' + currentSearchForm);
	myEl.style.color = '#000000';
	myEl.style.textDecoration = 'underline';
	

	myIFrame = document.getElementById('iframe_search');



	myIFrame.src = '/lmn/pso/catalog/Category.jhtml?CATID=' + newForm ;

	myEl = document.getElementById('is_radio_' + newForm);
	myEl.checked = 'true';
	myEl = document.getElementById('is_link_' + newForm);
	myEl.style.color = '#ff0099';
	myEl.style.textDecoration = 'none';
	

	currentSearchForm = newForm;
	}
}
function fnChangeLocation(location){
	if(isNaN(parseInt(location))){
		document.location = location;
	}else{
		changeForm(location);
	}
}
