// JavaScript Document
function showUrunSearch()
{
	did = 'urunsearch';
	did2 = 'firmasearch';
	linkid = 'uslink';
	linkid2 = 'fslink';

	document.getElementById(did).style.visibility='visible';
	document.getElementById(did).style.display='block';
	document.getElementById(linkid).style.background ='#FEEEB1';
	document.getElementById(linkid).style.color ='#000000';
	document.getElementById(linkid2).style.background ='';
	document.getElementById(linkid2).style.color ='#ffffff';
	
	document.getElementById(did2).style.visibility='hidden';
	document.getElementById(did2).style.display='none';
	
}

function showFirmaSearch()
{
	did2 = 'urunsearch';
	did = 'firmasearch';
	linkid = 'fslink';
	linkid2 = 'uslink';
	
	document.getElementById(did).style.visibility='visible';
	document.getElementById(did).style.display='block';
	document.getElementById(linkid).style.background ='#FEEEB1';
	document.getElementById(linkid).style.color ='#000000';
	document.getElementById(linkid2).style.background ='';
	document.getElementById(linkid2).style.color ='#ffffff';
	
	document.getElementById(did2).style.visibility='hidden';
	document.getElementById(did2).style.display='none';
	
}
