// open popup window without scrollbar
function openIT(susWin,susWinW,susWinH) {
	theURL=susWin
	wname ="PopupWindow"
	W=susWinW + 30;
	H=susWinH + 50;
	L=screen.width-W;
	T=0;
	PopupWindow = 
window.open(theURL, wname,"width=" + W + ",height=" + H + ",menubar=no,location=no,status=no,directories=no,resizable=no,scrollbars=no,toolbar=no,dependent=yes");
   PopupWindow.moveTo(0,0);
//   PopupWindow.moveTo(L,T);
   PopupWindow.resizeTo(W,H);
   PopupWindow.focus();
}

// open popup window with scrollbar
function openITws(susWin,susWinW,susWinH) {
	theURL=susWin
	wname ="PopupWindow"
	W=susWinW + 0;
	H=susWinH + 0;
	L=screen.width-W;
	T=0;
	PopupWindow = 
window.open(theURL, wname,"width=" + W + ",height=" + H + ",menubar=no,location=no,status=no,directories=no,resizable=no,scrollbars=yes,toolbar=no,dependent=yes");
   PopupWindow.moveTo(0,0);
//   PopupWindow.moveTo(L,T);
   PopupWindow.resizeTo(W,H);
   PopupWindow.focus();
}