function showWait()
{ 
//  document.getElementById("doc2").style.display="none";
//  document.getElementById("waitDiv").style.display="block";
  
//  if (document.getElementById("SEOfooter"))
//    document.getElementById("SEOfooter").style.display="none";

  $("#waitDiv").dialog(
  { 
        dialogClass: 'noTitleStuff',
        modal  : true,
        height : 400,
        width  : 600,
        resizable: false,
        draggable: false
  });
} 

