// JavaScript Document
function hide(value){

	var someString = 'someDiv'+value;
		
	var someValue = document.getElementById(someString).style.visibility;
	
	document.getElementById(someString).style.visibility='hidden';
	document.getElementById(someString).style.display ='none';
	
	var someName = 'img' + value;
	var someImage = document.getElementById(someName);
		someImage.src = 'images/icons/arrow'+value+'.jpg';

	someName = 'table' + value;
	var someTable = document.getElementById(someName);
	someTable.className = 'backgroundNoGradient';

	

	return;

}

function show(value){

	var someString = 'someDiv'+value;

	var someValue = document.getElementById(someString).style.visibility;

	if (someValue=='hidden'){
		document.getElementById(someString).style.visibility='visible';
		document.getElementById(someString).style.display ='';
		
		var someName = 'img' + value;
		var someImage = document.getElementById(someName);
		someImage.src = 'images/icons/someImage.jpg';
		
		someName = 'table' + value;
		var someTable = document.getElementById(someName);
		someTable.className = 'backgroundGradient';
	
	}
	return;

}

function sendForm(){
	var Index = document.getElementById('ddl').selectedIndex;
	document.ddlForm.action="#"+document.getElementById('ddl').options[Index].value;
	alert(document.ddlForm.action);
	return;
	document.ddlForm.submit();
}

