   function okno(url)
   {
      msg=window.open(url,"okienko","height=375,width=500,resizable=0,scrollbars=no,menubar=no,toolbars=no");
      msg.window.focus();
   }
   
   function OpenWindow(url,sizeX,sizeY)
   {
      var width = sizeX + 30;
      var height = sizeY + 30;

      var aw = screen.availWidth;
      var ah = screen.availHeight;

      var msg = window.open(url, "PopUp", 'width=' + width + ',height=' + height + ', left = '+ (aw-width)/2 +', top = '+ (ah-height)/2 +' , resizable=1, scrollbars=yes, menubar=no, toolbars=no');
      msg.window.focus();
   }

   function okno1(url)
   {
      var sizeX = 400;
      var sizeY = 300;

      var width = sizeX + 30;
      var height = sizeY + 30;

      var aw = screen.availWidth;
      var ah = screen.availHeight;

      var msg = window.open(url, "PopUp", 'width=' + width + ',height=' + height + ', left = '+ (aw-width)/2 +', top = '+ (ah-height)/2 +' , resizable=0, scrollbars=no, menubar=no, toolbars=no');
      msg.window.focus();
   }

	function expandcontent(cid)
	{
		if (document.getElementById(cid).style.display == 'block')
			document.getElementById(cid).style.display = 'none';
		else
			document.getElementById(cid).style.display = 'block';
	}
   