function resizewin() {
	var width=550;
	var height=800;
	if (document.all) {
		top.window.resizeTo(width,height);
	}
	else if (document.layers||document.getElementById) {
		   top.window.outerHeight = height;
		   top.window.outerWidth = width;
	}
}
