 function open_window(url)
 {
  var left = 0 ;
  var top = 0 ;
  var width = screen.availWidth;
  var height = screen.availHeight;
  var name = '';
   var toolbar = 'no';
   var menubar = 'no';
   var statusbar = 'no';
   var scrollbars = 'yes' ;
   var resizable = 'yes' ;
  
   window.open(url, name, 
  'width='      + width       +
  ',height='    + height      +
  ',left='      + left        +
  ',top='       + top         +
  ',menubar='   + menubar     +
  ',status='    + status      +
  ',location='  + location    +
  ',toolbar='   + toolbar     + 
  ',scrollbars='+ scrollbars  +
  ',resizable=' + resizable   );
}
 
 function bigpic(p,previous)
    {
	      css = "<LINK REL=STYLESHEET TYPE='text/css' HREF='../styles_cadeau.css' TITLE='WebShopping'>";
	      pagesource = "<html><head>" + css + "<title>" + previous + "</title></head><body class=info>";
              pagesource += "<a href='javascript: history.go(-1)'" + ">&lt;--Back</a>";
	      pagesource += "<table><tr><td><img class=img_border src='" + p + "'" + "></td></tr></table>";
              pagesource += "<a href='javascript: history.go(-1)'" + ">&lt;--Back</a>";
	      pagesource += "</body></html>\n";
	      d = "width=600,height=400,scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1";
	      win = window.open( "", "_self", d );
	      win.document.write(pagesource);
	      win.document.close();
    }

   