function fullwin(where){
   var newwin = window.open(where,"newwin",'fullscreen=yes,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + screen.width + ',height=' + screen.height);
   newwin.moveTo(0,0);newwin.focus();
 }
 
function classicwin(url, titre,scroll)  {
  var top=0;
  var left=0;
  window.open(url, titre,'top='+ top +',left='+ left +',width=' + screen.width + ',  height=' + screen.height + ', scrollbars=' + scroll +',status=yes' +',resizable=yes'+',toolbar=yes' +',menubar=yes' +',location=yes');
}

function popup(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
