function windowopen(obj, resize, scroll)
{
	window.open(obj.href, "_blank", "width=100,height=100,resizable=" + ((!resize) ? "no" : "yes") + ",scrollbars=" + ((!scroll) ? "no" : "yes"));
}

function resizingFix(w, h, scroll)
{
	if(!scroll) {
		scroll = false;
	}
	if(document.all) {
		if(/MSIE 6/.test(navigator.userAgent)) {
			w += 10;
			h += 8;
		} else {
			w += 10;
			h += 36;
		}
	} else {
		w += 6;
		h += 49
	}
	if(scroll) {
		w += 16;
		h += 16;
	}
	window.resizeTo(w, h);
}