function show(id)
		{
		   	document.getElementById(id).style.border=' 1px solid #EE8300';
                       document.getElementById(id).style.opacity=' .7';
                       document.getElementById(id).style.filter=' alpha(opacity:70)';


                            
		}

        function dontshow(id)
		{
				document.getElementById(id).style.border='1px solid  #888888';
                                 document.getElementById(id).style.opacity=' 1';
                                 document.getElementById(id).style.filter=' alpha(opacity:100)';

		}




