var popWindow; 

function newWindow(mid, set, name, club, video) {
  var winURL = "http://webmodels.tv/basket.php?mid="+mid+"&set="+set+"&name="+name+"&club="+club+"&video="+video; 
  
  if (!popWindow || popWindow.closed) { 
  
  popWindow = window.open(winURL, "INFO", 
    config="height=700, width=435, location=0, menubar=0, resizable=0, left=150, top=100, scrollbars=0, status=0, toolbar=0", "replace=yes");
    
  }
  else{
    popWindow.focus();
    popWindow.location = winURL; 
  }
}
