function openWindow(url, person) {

  if (typeof(popWin) != "object") 
	popWin = window.open(url, person, "width=200,height=300,top=100,left=390,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=1,copyhistory=0");
  else {
    if (!popWin.closed) 
      popWin.location.href = url;
    else 
	  popWin = window.open(url, person, "width=200,height=300,top=100,left=390,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=1,copyhistory=0");
 }	  
   
   popWin.focus();
}

function openWindow2(url, picture) {

  if (typeof(popWin) != "object") 
	popWin = window.open(url, picture, "width=550,height=500,top=100,left=100,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=1,copyhistory=0");
  else {
    if (!popWin.closed) 
      popWin.location.href = url;
    else 
	  popWin = window.open(url, picture, "width=500,height=550,top=100,left=100,alwaysRaised=yes,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=1,copyhistory=0");
 }	  
   
   popWin.focus();
}


