// variaveis globais
var vWindow = null;	
var vPhotoWindow = null;

function openWindow(aUrl, aWidth, aHeight, aOptions){
  mCloseWindow(vWindow);
  
  var vAllOptions = 'width=' + aWidth + ',height=' + aHeight;
  if (aOptions != '')
  {
    vAllOptions = vAllOptions + ',' + aOptions;
  }
  vWindow = window.open(aUrl, 'Alma', vAllOptions);
  
  vWindow.focus(); 
}

function mCloseWindow(aWindow){
  if (aWindow != null)
  {
    if (!aWindow.closed)
	aWindow.close();
  }
  else
  {
    aWindow = null;
  }
}


function mShowPhoto(aSource, aTitle, aWidth, aHeight)
{
  mCloseWindow(vPhotoWindow);
  vPhotoWindow = window.open("","Images","width="+aWidth+",height="+aHeight);
  vPhotoWindow.document.open();  
  vPhotoWindow.document.write("<head></head><body leftmargin=\"0\" topmargin=\"0\"><img src=" + aSource + "></body>");
  vPhotoWindow.document.close();
  vPhotoWindow.document.title = aTitle;
  vPhotoWindow.focus(); 
}