/********************
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=30,screenY=30,left=30,top=30");
  ww.focus();
}

function newWindow1(page, winName, width, height, sb, left,  top) {
	if (sb==null) sb=1;
	if (left==null) sb=100;
	if (top==null) sb=100;
	ww1=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=30,screenY=30,left="+left+",top="+top);
	ww1.focus();
}
//-->
