 //Open office photo
  function openphoto(loc) {
      var wnd="openphoto";
      var width='470';
      var height='380';
      var myWindow = window.open(loc, wnd, 'resizable=no,scrollbars=no,status=0,width='+width+',height='+height);
      if (myWindow.focus!=null) {
          myWindow.focus();
      }
    }
	
  function openpage(loc) {
      var wnd="openpage";
      var width='420';
      var height='120';
      var myWindow = window.open(loc, wnd, 'resizable=no,scrollbars=no,status=0,width='+width+',height='+height);
      if (myWindow.focus!=null) {
          myWindow.focus();
      }
    }	
