/********************
file.....: js/nw.js
Descr....: New Window
Author...: George Stathis
Copyright: G&G - George Stathis - Gina Theodorly (www.gandg.gr)
*******************/
<!--
function newWindow(page, winName, width, height,sb) {
  if (sb==null) sb=1;
  ww=window.open(page,winName,"toolbar=0,location=0,directories=0,"+
	"status=0,menubar=0,scrollbars="+sb+",resizable=1,copyhistory=0,"+
	"width="+width+",height="+height+",screenX=0,screenY=0");
  ww.focus();
}
//-->

