// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function confirmCloseWin ()
{
	var doclose = confirm("You are about to exit the photogallery\nAre you sure?");
	
	if (doclose)
	{
		self.close();
	}
	
}

function noConfirmCloseWin ()
{
	self.close();
}
