
/* ----------------- OPEN WINDOW ---------------- */ 
function MM_openBrWindow(theURL){ 

  winName="mojeokno";
  w = 687;
  h = 740;		

  LeftPosition=(screen.width)?(screen.width-w)/2:100;
  TopPosition=(screen.height)?(screen.height-h)/2:100;

  settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=0,menubar=no,toolbar=no,resizable=no';
  URL = theURL;
  var popup_window = window.open("", winName, settings);	  	
  popup_window.document.write('<html><head><title>Gazetka reklamowa - GRUPA APC</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
  popup_window.document.write('<style type="text/css"><!-- body {	margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; }	--></style>');
  popup_window.document.write('</head><body>');
  popup_window.document.write('<img src="' + URL + '">');	  
  popup_window.document.write('</body></html>');
  popup_window.document.close();
  popup_window.focus();
  
}
 

 

