function openPhotoPage(id,width,height) {
	return !window.open('/images/' + id + '.jpg', '_blank', 'width=' + (width + 10) + ',height=' + (height + 10) + ',toolbar=0,menubar=0,status=0,location=0');
}

function askFirst(action, id) {
	if(window.confirm("Are you sure?")) {
		new Ajax.Request("/admin/" + action + "/" + id, {
			method: 'post'
		});
	}
}