// JavaScript Document

function showDiv(div_name){
	theCustomFilterSelector = document.getElementById( div_name );
	theCustomFilterSelector.style.display = "";
	//theCustomFilterSelector.style.border = "1px #999999 dotted";
	//theCustomFilterSelector.innerHTML += '<br/><div align="right"><a align="right" class="link_close" href="javascript: void(0);" onclick="javascript: hideDiv(\'details_link_c\');hideDiv(\'details_link_r\');hideDiv(\'details_link_s\');">inchide</a></div>';
}
	
function hideDiv(div_name){
	theCustomFilterSelector = document.getElementById( div_name );
	theCustomFilterSelector.style.display = "none";
}

function toggleContent ( id )
{
	theContent = document.getElementById( id );
	
	if ( theContent.style.display == "none" ){
		theContent.style.display = "";
	} else {
		theContent.style.display = "none";
	}
} 

