//##############
function whoBro(varName)
{
  if (document.all){return document.all[varName];}
  else if (document.getElementById){return document.getElementById(varName);}
}
//#################################
function popupPh_old(url)
{
  var propWin = "width=" + 630 + ",height=" + 480;
  var photoPUp = window.open(url,pupPhoto, propWin);
  photoPUp.focus();
}

function popupPh( URL )
{
	var www;
	w=680;
	h=500;
	var idwnd = 'pupPhoto';
	www = window.open(URL,idwnd,'width='+w+',height='+h+',top=0,toolbar=no,personalbar=no,location=no,directories=no,scrollbar=yes,statusbar=no,menubar=no,status=no,resizable=yes,left=60,screenX=60,top=100,screenY=100');
	www.focus();
	return false;
}
