// JavaScript Document
function eMail()
{
}
function popup( file, width, height )
{
   width += 35;
   height += 35;
   options = "scrollbars=yes,resizable=yes,width=" + width + ",height=" + height;
   retwindow = window.open("","description",options);
   retwindow.location=file;
   retwindow.focus();
}