function showHide(lstId)
{	
	for(i=1;i<=4;i++){ 	
		document.getElementById("list"+i).style.display="none";
     }		
	 document.getElementById(lstId).style.display="block"; 		 
}


function stop()
{
	return false;
}
document.oncontextmenu=stop;