function PhotoPopupEx(pic,w,h)
{
  	MyURL=pic+".htm";
  	MyURL="popup.htm?"+pic
  	Features="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h;
  	PopUpWindow = window.open(MyURL,"",Features);
  	PopUpWindow.focus();
}
