// JavaScript Document

var popUpWinUtex=0;
function popUpWindow(URLStr, left, top, width, height)	{
  
  if(popUpWinUtex)	{
    
	if(!popUpWinUtex.closed) popUpWinUtex.close();
  
  }
  
  popUpWinUtex = open('../popup.php?f='+URLStr, 'popUpWinUtex', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  return false;
}

function okienko(url, width, height) {
	width1=width/2;
	height1=height/2;
	x=screen.availWidth/2-width1;
	y=screen.availHeight/2-height1;
    var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no, menubar=no, left='+x+', top='+y );
	Win.focus();
};