function popup(page) {

	width = 500;
	height = 400;
	scrollbars = 1;
	status = 0;

	LeftPosition = (screen.width-width) / 2
	TopPosition = (screen.height-height) / 2

	attributes = 'scrollbars='+scrollbars+'toolbar=0,location=0,directories=0,status='+status+',menubar=0,resizable=no,height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition

	window.open('/' + page, "_blank", attributes)

}

function popup2(page) {

	width = 780;
	height = 678;
	scrollbars = 0;
	status = 0;

	LeftPosition = (screen.width-width) / 2
	TopPosition = (screen.height-height) / 2

	attributes = 'scrollbars='+scrollbars+'toolbar=0,location=0,directories=0,status='+status+',menubar=0,resizable=no,height='+height+',width='+width+',top='+TopPosition+',left='+LeftPosition

	window.open('/' + page, "_blank", attributes)

}
