var popUpWin=0;

function popUpWindow(URLStr, width, height)
{
  if(popUpWin)
  {
	if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height);
}

function openPopupFull(url, height, width)
{
	var optionString = "resizable=yes,scrollbars=yes,location=yes,toolbar=yes,width=" + width + ",height=" + height;
	window.open(url, '', optionString);
}

function openPopupNone(url, height, width)
{
	var optionString = "resizable=yes,scrollbars=yes,location=no,toolbar=no,width=" + width + ",height=" + height;
	window.open(url, '', optionString);
}

