// JavaScript Document

function openWindow(pWindow, pSizeW, pSizeH) {
  if (pSizeW.length = 0)
	pSizeW=300;
	
	if (pSizeH.length = 0)
	pSizeH=450;
	
  if (pWindow.length != 0){
		myWin=window.open(pWindow,"schuefla", "width=" + pSizeW + ", height=" + pSizeH + ", statusbar=no, menubar=no, locationbar=yes resizable=yes");
		myWin.resizeTo(pSizeW, pSizeH);
	  myWin.focus();
	}
	myWin=null;
}
