	function checkSize() {
		y = 550;
		x = 660;
		if (document.body.clientWidth != x || document.body.clientHeight != y) {
			top.resizeTo(x,y);
			var deltaX = x - document.body.clientWidth;
			var deltaY = y - document.body.clientHeight;
			var newX = x + deltaX;
			var newY = y + deltaY;
			if (deltaY > 5) {top.resizeTo(newX, newY-14);}
			if(false){ top.resizeTo(x, y-10)}
		}
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}