<!--//

// FUNCTION - WINOPEN & WINCLOSE IMAGES

function win_open(page,win,x,y,xx,yy,a,b,c,d,e,f,g,h)
  {
    var path = page;
    var w = "width=" + x + ","; 
    var h = "height=" + y + ",";
    var l = "left=" + xx + ",";
    var t = "top=" + yy + ",";
    var sx = "screenX=" + xx + ",";
    var sy = "screenY=" + yy + ",";
	
	var tb = "toolbar="  + a + ",";
	var lc = "location="  + b + ",";
	var dr = "directories="  + c + ",";
	var st = "status="  + d + ",";
	var mb = "menubar="  + e + ",";
	var sb = "scrollbars="  + f + ",";
	var ch = "copyhistory="  + g + ",";
	var rs = "resizable="  + h + ",";
	
    attributes = w + h + l + t + sx + sy + tb + lc + dr + st + mb + sb + ch + rs;
    mywin=window.open(path,win,attributes);
    mywin.focus();
  }

function win_close(allwin) 
  {
    if(mywin)
    {
      mywin.close(allwin);
    }
  }

// -->