// Toggle Displayfunction Show(){    for(var i=0; i<arguments.length; i++){	var obj;	obj = document.getElementById(arguments[i]);	if( obj ){	    obj.style.display = "";	}    }}function Hide(){    for(var i=0; i<arguments.length; i++){	var obj;	obj = document.getElementById(arguments[i]);	if( obj ){	    obj.style.display = "none";	}    }}function Toggle(){    for(var i=0; i<arguments.length; i++){	var obj;	obj = document.getElementById(arguments[i]);	if( obj ){	    obj.style.display = ( "none" == obj.style.display ? "":"none" );	}    }}// end