// JavaScript Document
function test1(id) {
	alert(id);
}

function change_visibility (id){ 
//	alert(DropItem);
	if (document.all || document.getElementById){
		if (document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display="";
		}
		else 
	document.getElementById(id).style.display="none";
	} 
};