// resize popup to accomodate popup note


function widthHeight(){
	var x,y;
	var test1 = document.body.scrollHeight;
	var test2 = document.body.offsetHeight
	if (test1 > test2) // all but Explorer Mac
	{
	x = document.body.scrollWidth;
	y = document.body.scrollHeight;
	}
	else // Explorer Mac;
	//would also work in Explorer 6 Strict, Mozilla and Safari
	{
	x = document.body.offsetWidth;
	y = document.body.offsetHeight;
	}
	
	return new Array(x,y);
}


wh = widthHeight();
window.resizeTo(wh[0], wh[1] + 105);

