// JavaScript Document

function centered_popup(url, name, width, height) {
	var arguments;
	arguments='top=' + (screen.height-width)/2 + ', left=' + (screen.width-height)/2 + ', width=' + width + ', height=' + height + ', scrollbars=yes'
	window.open(url,name,arguments);
}

function ReadTerms(){
	centered_popup('Terms.aspx', 'terms', 600, 500);
}
