function full(add2) {
x=screen.availWidth;
y=screen.availHeight-30;
newwindow=eval("window.open('"+add2+"', '', 'width="+x+",height="+y+",scrollbars=no,fullscreen=no,resizable=no,,status=no,location=no,toolbar=no, menubar=no,top=0,left=0,screenX=0,screenY=0')");
window.opener=self;
}
function resellersW(addr)
   {
	height = 350;
	width = 750;
	if (document.all)
      {
      var x = window.screenLeft;
      var y = window.screenTop;
      var w = window.document.body.offsetWidth;
      var h = window.document.body.offsetHeight;
      }
  else
   {
   var x = window.screenX;
   var y = window.screenY;
   var w = window.outerWidth;
   var h = window.outerHeight;
   }
  var cntx = x + Math.round((w - width) / 2);
  var cnty = y + Math.round((h - height) / 2);
  window.open (addr, null, 'left=' + cntx + ',top=' + cnty + ',width=' + 
width + ',height=' + height);
}

function privacy(addr)
   {
	height = 400;
	width = 400;
	if (document.all)
      {
      var x = window.screenLeft;
      var y = window.screenTop;
      var w = window.document.body.offsetWidth;
      var h = window.document.body.offsetHeight;
      }
  else
   {
   var x = window.screenX;
   var y = window.screenY;
   var w = window.outerWidth;
   var h = window.outerHeight;
   }
  var cntx = x + Math.round((w - width) / 2);
  var cnty = y + Math.round((h - height) / 2);
  window.open (addr, null, 'left=' + cntx + ',top=' + cnty + ',width=' + 
width + ',height=' + height);
}
