function positioner ( xOffset, yOffset )
{
	this.left = (screen.availWidth - this.width) / 2;
	this.top = (screen.availHeight - this.height) / 2;

	this.features += ",left=" + this.left + ",top=" + this.top +",screenx=" + this.left + ",screeny=" + this.top ;
}


