function detectResolution(){
	$.ajax({
		type: "POST",
		url: "/ajax/detect_resolution",
		data: "width=" + screen.width + '&height=' + screen.height,
		success: function(data){
			$("#detectedResolution").html(data).show('slow');
		}
	});
}

function applyResolutionFilter(width,height){
	if (confirm('By setting a resolution filter, you will be able see only wallpapers that have this resolution filter...\nPress OK to continue!')) {
		document.location = '/?set_global_filter=1&width=' + encodeURIComponent(width) + '&height=' + encodeURIComponent(height);
	}
	return false;
}

function removeResolutionFilter(returnTo){
	document.location = '/?set_global_filter=0';
}

