function openWindow(href, target)
{
  var features = 'resizable,scrollbars,width=400,height=400,left=200,top=100';
  popupWin = window.open(href, target, features);
  if(popupWin.focus) popupWin.focus();
}