function change_resolution_for_top() {

	var w = 1000;

	if (document.documentElement != null && document.documentElement.scrollWidth) {
		w = document.documentElement.scrollWidth;
	} else if (document.body != null && document.body.scrollWidth) {
		w = document.body.scrollWidth;
	}

	var params = location.search;
	
	if (w < 950) {
		if (params) {
			path = "../" + params + "&m=rwd&a=page_o_agree&resolution=sd";
		} else {
			path = "../?m=rwd&a=page_o_agree&resolution=sd";
		}
	} else {
		if (params) {
			path = "../" + params + "&m=rwd&a=page_o_agree&resolution=hd";
		} else {
			path = "../?m=rwd&a=page_o_agree&resolution=hd";
		}
	}
	location.href = path;
}

function change_resolution() {
	var w = 1000;

	if (document.documentElement != null && document.documentElement.scrollWidth) {
		w = document.documentElement.scrollWidth;
	} else if (document.body != null && document.body.scrollWidth) {
		w = document.body.scrollWidth;
	}

	var params = location.search;

	if (w < 950) {
		location.href = "../" + params + "&resolution=sd";
	} else {
		location.href = "../" + params + "&resolution=hd";
	}
}
