function autoPlayer(url){
  var tools="";
  strWidth = screen.availWidth;
  strHeight = screen.availHeight;
  tools = "resizable=no,toolbar=no,location=no,scrollbars=no,directories=no,status=no,menubar=no,width="+strWidth+",height="+strHeight+",top=0,left=0";
  autoPlayerWindow = window.open(url, 'autoPlayer', tools);
  autoPlayerWindow.focus();
}
