function showMenu(id)
{
  if(document.getElementById(id).style.display == 'block')
    document.getElementById(id).style.display = 'none';
  else
    document.getElementById(id).style.display = 'block';  
}
function link(end){
	window.open(end,'','');
}